mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.3 KiB
27 lines
1.3 KiB
<Window |
|
x:Class="ICSharpCode.ILSpy.CreateListDialog" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
xmlns:properties="clr-namespace:ICSharpCode.ILSpy.Properties" |
|
xmlns:controls="clr-namespace:ICSharpCode.ILSpy.Controls" |
|
Title="{x:Static properties:Resources.List}" |
|
Style="{DynamicResource DialogWindow}" |
|
WindowStartupLocation="CenterOwner" |
|
ResizeMode="NoResize" |
|
Width="300" |
|
Height="150" |
|
FocusManager.FocusedElement="{Binding ElementName=ListName}"> |
|
<Grid Margin="12,8"> |
|
<Grid.RowDefinitions> |
|
<RowDefinition Height="Auto" /> |
|
<RowDefinition Height="Auto" /> |
|
</Grid.RowDefinitions> |
|
<StackPanel> |
|
<Label Content="{x:Static properties:Resources.EnterListName}"/> |
|
<TextBox Margin="8,8" Name="ListName" TextChanged="TextBox_TextChanged"></TextBox> |
|
</StackPanel> |
|
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="8,0"> |
|
<Button IsDefault="True" Margin="2,0" IsEnabled="False" Name="okButton" Click="OKButton_Click" Content="{x:Static properties:Resources.Create}"/> |
|
<Button IsCancel="True" Margin="2,0" Content="{x:Static properties:Resources.Cancel}"/> |
|
</StackPanel> |
|
</Grid> |
|
</Window> |