~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/Debugger/Debugger.AddIn/Tooltips/PinCloseControl.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
<UserControl
 
3
        Background="Transparent"
 
4
        x:Class="Debugger.AddIn.Tooltips.PinCloseControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
 
5
        <UserControl.Resources>
 
6
                <ResourceDictionary>
 
7
                        <ResourceDictionary.MergedDictionaries>
 
8
                                <ResourceDictionary
 
9
                                        Source="PinControlsDictionary.xaml" />
 
10
                        </ResourceDictionary.MergedDictionaries>
 
11
                </ResourceDictionary>
 
12
        </UserControl.Resources>
 
13
        <StackPanel>
 
14
                <Button
 
15
                        Name="CloseButton"
 
16
                        Click="CloseButton_Click"
 
17
                        Template="{StaticResource CloseButtonTemplate}" />
 
18
                <ToggleButton
 
19
                        Name="UnpinButton"
 
20
                        Checked="UnpinButton_Checked"
 
21
                        Unchecked="UnpinButton_Unchecked"
 
22
                        Template="{StaticResource PinButtonTemplate}" />
 
23
                <ToggleButton
 
24
                        Name="CommentButton"
 
25
                        Checked="CommentButton_Checked"
 
26
                        Unchecked="CommentButton_Unchecked"
 
27
                        Template="{StaticResource CommentButtonTemplate}" />
 
28
        </StackPanel>
 
29
</UserControl>
 
 
b'\\ No newline at end of file'