~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/Dialogs/ProfilerControlWindow.xaml

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<Window
 
3
        x:Class="ICSharpCode.Profiler.AddIn.Dialogs.ProfilerControlWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:sd="http://icsharpcode.net/sharpdevelop/core"
 
4
        Title="{sd:Localize AddIns.Profiler.ProfilerControlWindow.Title}"  SizeToContent="WidthAndHeight"
 
5
        WindowStyle="ToolWindow" Closing="WindowClosing"
 
6
        Style="{x:Static sd:GlobalStyles.WindowStyle}"
 
7
        Topmost="True">
 
8
        <Grid>
 
9
                <Grid.ColumnDefinitions>
 
10
                        <ColumnDefinition Width="Auto" />
 
11
                </Grid.ColumnDefinitions>
 
12
                <Grid.RowDefinitions>
 
13
                        <RowDefinition Height="Auto" />
 
14
                </Grid.RowDefinitions>
 
15
                <ToolBar>
 
16
                        <ToggleButton
 
17
                                Content="{sd:Localize AddIns.Profiler.ProfilerControlWindow.CollectData}"
 
18
                                x:Name="collectData"
 
19
                                Checked="CollectDataChecked"
 
20
                                Unchecked="CollectDataUnchecked" />
 
21
                        <Button
 
22
                                Content="{sd:Localize AddIns.Profiler.ProfilerControlWindow.Shutdown}"
 
23
                                x:Name="shutdown"
 
24
                                Click="ShutdownClick" />
 
25
                </ToolBar>      
 
26
        </Grid>
 
27
</Window>
 
 
b'\\ No newline at end of file'