~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/Debugger/Debugger.AddIn/Visualizers/TextVisualizer/TextVisualizerWindow.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="Debugger.AddIn.Visualizers.TextVisualizer.TextVisualizerWindow" 
 
4
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
 
5
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
 
6
  xmlns:core="http://icsharpcode.net/sharpdevelop/core"
 
7
  xmlns:AvalonEdit="http://icsharpcode.net/sharpdevelop/avalonedit"
 
8
  Title="Text visualizer"
 
9
  SizeToContent="WidthAndHeight"
 
10
  Style="{x:Static core:GlobalStyles.WindowStyle}"
 
11
  WindowStartupLocation="CenterScreen"
 
12
  MinWidth="300"
 
13
  MinHeight="300"
 
14
  MaxWidth="1000"
 
15
  MaxHeight="700">
 
16
  <DockPanel
 
17
    Margin="2">
 
18
    <StackPanel
 
19
      DockPanel.Dock="Top"
 
20
      Orientation="Horizontal">
 
21
      <Button
 
22
        Name="btnCopy"
 
23
        HorizontalAlignment="Left"
 
24
        Style="{x:Static core:GlobalStyles.ButtonStyle}"
 
25
        Margin="4"
 
26
        Click="BtnCopy_Click">Copy to clipboard</Button>
 
27
      <Button
 
28
        Name="btnClose"
 
29
        HorizontalAlignment="Left"
 
30
        Style="{x:Static core:GlobalStyles.ButtonStyle}"
 
31
        Margin="0 4"
 
32
        Click="BtnClose_Click">Close</Button>
 
33
      <CheckBox
 
34
        Name="chbWrap"
 
35
        IsChecked="false"
 
36
        VerticalAlignment="Center"
 
37
        Margin="4 0"
 
38
        Unchecked="CheckBox_CheckedChanged"
 
39
        Checked="CheckBox_CheckedChanged">Word wrap</CheckBox>
 
40
    </StackPanel>
 
41
    <Border
 
42
      Margin="0"
 
43
      Padding="2">
 
44
      <AvalonEdit:TextEditor
 
45
        x:Name="textEditor"
 
46
        Background="White"
 
47
         IsReadOnly="true"
 
48
        ScrollViewer.HorizontalScrollBarVisibility="Auto"
 
49
        ScrollViewer.VerticalScrollBarVisibility="Auto"></AvalonEdit:TextEditor>
 
50
    </Border>
 
51
  </DockPanel>
 
52
</Window>
 
 
b'\\ No newline at end of file'