-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCollectionEditWindow.xaml
More file actions
17 lines (16 loc) · 893 Bytes
/
Copy pathCollectionEditWindow.xaml
File metadata and controls
17 lines (16 loc) · 893 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window x:Class="MatrixGraphicsGenerator.CollectionEditWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MatrixGraphicsGenerator"
mc:Ignorable="d"
Title="Collection Edit" Icon="Resources/MGG.ico" WindowStartupLocation="CenterScreen" SizeToContent="WidthAndHeight" ResizeMode="NoResize">
<Grid x:Name="CollectionGrid" VerticalAlignment="Top" Background="#FFA6A6A6">
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="100"/>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
</Grid>
</Window>