NewModelNameDlg.xaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Window
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:local="clr-namespace:ConfigEditor"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. Title="NewModelNameDlg"
  8. Width="200"
  9. Height="150"
  10. WindowStartupLocation="CenterOwner"
  11. WindowStyle="ToolWindow"
  12. mc:Ignorable="d"
  13. x:Class="ConfigEditor.NewModelNameDlg">
  14. <Grid>
  15. <Grid.RowDefinitions>
  16. <RowDefinition />
  17. <RowDefinition />
  18. <RowDefinition />
  19. </Grid.RowDefinitions>
  20. <Label HorizontalAlignment="Center">Enter New Model Name</Label>
  21. <TextBox
  22. x:Name="uxModelName"
  23. Grid.Row="1"
  24. Margin="10"
  25. VerticalAlignment="Center"
  26. TextAlignment="Center" />
  27. <Button
  28. Grid.Row="2"
  29. Width="50"
  30. VerticalAlignment="Center"
  31. Click="OK_Click">
  32. <Label>OK</Label>
  33. </Button>
  34. </Grid>
  35. </Window>