7 changed files with 63 additions and 47 deletions
@ -1,41 +1,35 @@
@@ -1,41 +1,35 @@
|
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<src:BaseWatchBox |
||||
x:Class="Debugger.AddIn.Pads.WatchInputBox" xmlns:src="clr-namespace:ICSharpCode.SharpDevelop.Gui.Pads;assembly=ICSharpCode.SharpDevelop" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||
ShowInTaskbar="False" |
||||
x:Class="Debugger.AddIn.Pads.WatchInputBox" xmlns:src="clr-namespace:ICSharpCode.SharpDevelop.Gui.Pads;assembly=ICSharpCode.SharpDevelop" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:core="http://icsharpcode.net/sharpdevelop/core" xmlns:widgets="http://icsharpcode.net/sharpdevelop/widgets" |
||||
Style="{x:Static core:GlobalStyles.DialogWindowStyle}" |
||||
WindowStartupLocation="CenterScreen" |
||||
WindowState="Normal" |
||||
WindowStyle="ToolWindow" |
||||
Height="75" |
||||
Width="271" |
||||
ResizeMode="NoResize" |
||||
Background="LightGray"> |
||||
<Grid |
||||
Height="50" |
||||
VerticalAlignment="Top"> |
||||
<Grid.RowDefinitions> |
||||
<RowDefinition |
||||
Height="23" /> |
||||
<RowDefinition |
||||
Height="24" /> |
||||
</Grid.RowDefinitions> |
||||
<DockPanel |
||||
VerticalAlignment="Top" |
||||
Name="ConsolePanel" /> |
||||
<DockPanel |
||||
VerticalAlignment="Bottom" |
||||
Width="300" |
||||
SizeToContent="Height" |
||||
ResizeMode="NoResize"> |
||||
<DockPanel Margin="4"> |
||||
<widgets:UniformGridWithSpacing |
||||
Columns="2" |
||||
DockPanel.Dock="Bottom" |
||||
Margin="0,8" |
||||
Grid.Row="1" |
||||
HorizontalAlignment="Center"> |
||||
<Button |
||||
Name="AcceptButton" |
||||
Width="100" |
||||
Content="Accept" |
||||
Style="{x:Static core:GlobalStyles.ButtonStyle}" |
||||
Content="{core:Localize Global.OKButtonText}" |
||||
Click="AcceptButton_Click" |
||||
IsDefault="True" /> |
||||
<Button |
||||
Name="CancelButton" |
||||
Width="100" |
||||
Content="Cancel" |
||||
Click="CancelButton_Click" /> |
||||
Style="{x:Static core:GlobalStyles.ButtonStyle}" |
||||
Content="{core:Localize Global.CancelButtonText}" |
||||
Click="CancelButton_Click" |
||||
IsCancel="True" /> |
||||
</widgets:UniformGridWithSpacing> |
||||
<ContentPresenter |
||||
MaxHeight="75" |
||||
Name="ConsolePanel" /> |
||||
</DockPanel> |
||||
</Grid> |
||||
</src:BaseWatchBox> |
Loading…
Reference in new issue