5월, 2015의 게시물 표시

ScrillViewer, Canvas and Image

<Window x:Class="WpfViewBox.MainWindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         xmlns:wpfViewBox="clr-namespace:WpfViewBox"         Title="MainWindow" Height="350" Width="525">     <Grid ShowGridLines="True">         <Grid.RowDefinitions>             <RowDefinition Height="Auto" />             <RowDefinition Height="*" />         </Grid.RowDefinitions>         <StackPanel Grid.Row="0">             <Button Name="Button1" Content="Click" Click="Button1_OnClick" HorizontalAlignment="Left" />         </StackPanel>         <ScrollViewer Grid.Row...

Performance Analyzing

이미지
Tool Description Visual Studio Performance Analysis Use to analyze the CPU usage of your .NET Framework apps that will be deployed to computers that are running the Windows operating system. This tool is available from the  Debug  menu in Visual Studio after you open a project. For more information, see  Analyzing Application Performance by Using Profiling Tools .   Note Use Windows Phone Application Analysis (see next row) when targeting Windows Phone. Windows Phone Application Analysis Use to analyze the CPU and memory, network data transfer rate, app responsiveness, and battery consumption in your Windows Phone apps. This tool is available from the  Debug  menu for a Windows Phone project in Visual Studio after you install the  Windows Phone SDK . For more information, see  App profiling for Windows Phone . PerfView Use to identify CPU and memory-related performance issues. This tool uses event tracing for Windo...

Very simple state monitor

소스