Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@4808 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
2 changed files with 55 additions and 18 deletions
@ -1,16 +1,49 @@ |
|||||||
<Window x:Class="Debugger.AddIn.Visualizers.TextVisualizer.TextVisualizerWindow" |
<?xml version="1.0" encoding="utf-8"?> |
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
<Window |
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
x:Class="Debugger.AddIn.Visualizers.TextVisualizer.TextVisualizerWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
Title="Text visualizer" SizeToContent="WidthAndHeight" WindowStartupLocation="CenterScreen" |
Title="Text visualizer" |
||||||
MinWidth="300" MinHeight="300" MaxWidth="1000" MaxHeight="700"> |
SizeToContent="WidthAndHeight" |
||||||
<DockPanel Margin="2"> |
WindowStartupLocation="CenterScreen" |
||||||
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal"> |
MinWidth="300" |
||||||
<Button Name="btnCopy" HorizontalAlignment="Left" Padding="4 2" Margin="0 4" Click="BtnCopy_Click">Copy to clipboard and close</Button> |
MinHeight="300" |
||||||
<CheckBox Name="chbWrap" IsChecked="false" VerticalAlignment="Center" Margin="4 0" Unchecked="CheckBox_CheckedChanged" Checked="CheckBox_CheckedChanged">Word wrap</CheckBox> |
MaxWidth="1000" |
||||||
|
MaxHeight="700"> |
||||||
|
<DockPanel |
||||||
|
Margin="2"> |
||||||
|
<StackPanel |
||||||
|
DockPanel.Dock="Top" |
||||||
|
Orientation="Horizontal"> |
||||||
|
<Button |
||||||
|
Name="btnCopy" |
||||||
|
HorizontalAlignment="Left" |
||||||
|
Padding="4 2" |
||||||
|
Margin="4" |
||||||
|
Click="BtnCopy_Click">Copy to clipboard</Button> |
||||||
|
<Button |
||||||
|
Name="btnClose" |
||||||
|
HorizontalAlignment="Left" |
||||||
|
Padding="4 2" |
||||||
|
Margin="0 4" |
||||||
|
Click="BtnClose_Click">Close</Button> |
||||||
|
<CheckBox |
||||||
|
Name="chbWrap" |
||||||
|
IsChecked="false" |
||||||
|
VerticalAlignment="Center" |
||||||
|
Margin="4 0" |
||||||
|
Unchecked="CheckBox_CheckedChanged" |
||||||
|
Checked="CheckBox_CheckedChanged">Word wrap</CheckBox> |
||||||
</StackPanel> |
</StackPanel> |
||||||
<Border Margin="0" Padding="2"> |
<Border |
||||||
<TextBox Background="White" IsReadOnly="True" Name="txtText" Width="Auto" Height="Auto" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Auto"></TextBox> |
Margin="0" |
||||||
|
Padding="2"> |
||||||
|
<TextBox |
||||||
|
Background="White" |
||||||
|
IsReadOnly="True" |
||||||
|
Name="txtText" |
||||||
|
Width="Auto" |
||||||
|
Height="Auto" |
||||||
|
ScrollViewer.HorizontalScrollBarVisibility="Auto" |
||||||
|
ScrollViewer.VerticalScrollBarVisibility="Auto"></TextBox> |
||||||
</Border> |
</Border> |
||||||
|
|
||||||
</DockPanel> |
</DockPanel> |
||||||
</Window> |
</Window> |
||||||
Loading…
Reference in new issue