3.2.3
This commit is contained in:
21
Xaml/ObjectPicker.xaml
Normal file
21
Xaml/ObjectPicker.xaml
Normal file
@@ -0,0 +1,21 @@
|
||||
<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="*"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<DataGrid Name="dgObjects"
|
||||
SelectionMode="Single"
|
||||
SelectionUnit="FullRow"
|
||||
CanUserAddRows="False"
|
||||
Grid.Column="1"
|
||||
Grid.Row="1" />
|
||||
|
||||
<StackPanel Grid.Row="1" Name="spObjectPickerSubMenu" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,5,0,0" >
|
||||
<Button Name="btnObjectPickerOK" Content="OK" MinWidth="100" Margin="0,0,5,0" />
|
||||
<Button Name="btnObjectPickerCancel" Content="Copy" MinWidth="100" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
Reference in New Issue
Block a user