|
18 | 18 | <Grid.ColumnDefinitions> |
19 | 19 | <ColumnDefinition Width="80"/> |
20 | 20 | <ColumnDefinition Width="130"/> |
21 | | - <ColumnDefinition Width="130"/> |
| 21 | + <ColumnDefinition Width="330"/> |
22 | 22 | <ColumnDefinition Width="460"/> |
23 | 23 | </Grid.ColumnDefinitions> |
24 | 24 | <StackPanel Grid.Row="0" Grid.Column="0" Margin="0,10,0,17"> |
25 | 25 | <Label HorizontalAlignment="Left" Style="{StaticResource @LabelStyle}" VerticalAlignment="Center">Column:</Label> |
26 | 26 | </StackPanel> |
27 | 27 | <StackPanel Grid.Row="0" Grid.Column="1" Margin="0,10,0,17"> |
28 | | - <ComboBox x:Name="cmbColSelectorValue" Height="25" SelectionChanged="ColSelectorValue_SelectionChanged" Style="{StaticResource $FlatInputComboBoxStyle}"/> |
| 28 | + <ComboBox x:Name="cmbColSelectorValue" Height="25" SelectionChanged="ColSelectorValue_SelectionChanged" Style="{StaticResource $FlatInputComboBoxStyle}"/> |
29 | 29 | </StackPanel> |
30 | | - <StackPanel Grid.Row="0" Grid.Column="2" Margin="0,10,0,17" > |
31 | | - <ComboBox x:Name="cmbColumnValue" Grid.Column="1" Height="25" IsEditable="True" Margin="10,0,0,0" Style="{StaticResource $FlatInputComboBoxStyle}" SelectionChanged="ColumnValue_SelectionChanged" LostKeyboardFocus="ColumnValue_LostKeyboardFocus"/> |
| 30 | + <StackPanel Grid.Row="0" Grid.Column="2" Margin="0,10,15,17"> |
| 31 | + <DockPanel > |
| 32 | + <Button x:Name="ColumnValueVE" DockPanel.Dock="Right" Content="..." Click="ColumnValueVE_Click" VerticalAlignment="Center" Style="{StaticResource @InputButtonStyle}" Margin="1,0,0,0" Width="30" Height="24"/> |
| 33 | + <ComboBox x:Name="cmbColumnValue" Height="25" IsEditable="True" Margin="10,0,0,0" Style="{StaticResource $FlatInputComboBoxStyle}" SelectionChanged="ColumnValue_SelectionChanged" LostKeyboardFocus="ColumnValue_LostKeyboardFocus"/> |
| 34 | + </DockPanel> |
32 | 35 | </StackPanel> |
33 | 36 | <StackPanel Grid.Row="1" Grid.Column="0"> |
34 | 37 | <Label HorizontalAlignment="Left" Style="{StaticResource @LabelStyle}" VerticalAlignment="Top">Row:</Label> |
|
39 | 42 | <RadioButton Name="BySelectedRow" Content="Selected Row" Checked="BySelectedRow_Checked" Margin="0,5,0,5"/> |
40 | 43 | <RadioButton Name="Where" Content="Where..." Checked="Where_Checked" Unchecked="Where_Unchecked" Margin="0,5,0,5"/> |
41 | 44 | </StackPanel> |
42 | | - <StackPanel Grid.Row="1" Grid.Column="2" Grid.ColumnSpan="2" Orientation="Horizontal" VerticalAlignment="Top"> |
| 45 | + <StackPanel Grid.Row="1" Grid.Column="2" > |
43 | 46 | <DockPanel> |
44 | | - <ComboBox x:Name="RowSelectorValue" Width="250" Margin="10,0,0,0" IsEditable="True" IsEnabled="True" Style="{StaticResource $FlatInputComboBoxStyle}" SelectionChanged="RowSelectorValue_SelectionChanged" LostKeyboardFocus="RowSelectorValue_LostKeyboardFocus"/> |
45 | | - <Button x:Name="RowSelectorValueVE" Content="..." Click="RowSelectorValueVE_Click" HorizontalAlignment="Left" DockPanel.Dock="Left" VerticalAlignment="Center" Style="{StaticResource @InputButtonStyle}" Margin="1,0,5,0" Width="30" Height="24"></Button> |
| 47 | + <Button x:Name="RowSelectorValueVE" DockPanel.Dock="Right" Content="..." Click="RowSelectorValueVE_Click" VerticalAlignment="Center" Style="{StaticResource @InputButtonStyle}" Margin="1,0,0,0" Width="30" Height="24"/> |
| 48 | + <ComboBox x:Name="RowSelectorValue" Margin="10,0,0,0" IsEditable="True" IsEnabled="True" Style="{StaticResource $FlatInputComboBoxStyle}" SelectionChanged="RowSelectorValue_SelectionChanged" LostKeyboardFocus="RowSelectorValue_LostKeyboardFocus"/> |
46 | 49 | </DockPanel> |
47 | | - |
48 | 50 | </StackPanel> |
49 | 51 | <StackPanel Grid.Row="2" Grid.Column="1" x:Name="WherePanel" Visibility="Collapsed" Grid.RowSpan="1" Grid.ColumnSpan="3"> |
50 | 52 | <Grid Margin="0,5,0,0"> |
|
57 | 59 | <ColumnDefinition Width="130"/> |
58 | 60 | <ColumnDefinition Width="200"/> |
59 | 61 | </Grid.ColumnDefinitions> |
60 | | - <ComboBox x:Name="WhereColumn" Grid.Row="0" Grid.Column="0" Style="{StaticResource $FlatInputComboBoxStyle}" Height="25" SelectionChanged="WhereColumn_SelectionChanged" Margin="10,5,0,0" /> |
61 | | - <ComboBox x:Name="WhereColumnTitle" Grid.Row="0" Grid.Column="1" Style="{StaticResource $FlatInputComboBoxStyle}" IsEditable="True" Height="25" Margin="10,5,0,0" VerticalAlignment="Top" LostKeyboardFocus="WhereColumnTitle_LostKeyboardFocus" SelectionChanged="WhereColumnTitle_SelectionChanged"/> |
62 | | - <ComboBox x:Name="WhereProperty" Grid.Row="1" Grid.Column="0" Style="{StaticResource $FlatInputComboBoxStyle}" Height="25" Margin="10,5,0,0" SelectionChanged="WhereProperty_SelectionChanged"/> |
63 | | - <ComboBox x:Name="WhereOperator" Grid.Row="1" Grid.Column="1" Style="{StaticResource $FlatInputComboBoxStyle}" Height="25" Margin="10,5,0,0" SelectionChanged="WhereOperator_SelectionChanged"/> |
64 | | - |
65 | | - <Actions:UCValueExpression x:Name="WhereColumnValue" Grid.Row="1" Grid.Column="2" Height="25" Margin="10,5,0,0" LostFocus="WhereColumnValue_LostFocus" ToolTip="Enter the Value to be search by given Condition"/> |
| 62 | + <ComboBox x:Name="WhereColumn" Grid.Row="0" Grid.Column="0" Style="{StaticResource $FlatInputComboBoxStyle}" Height="25" SelectionChanged="WhereColumn_SelectionChanged" Margin="12,5,0,0"/> |
| 63 | + <DockPanel Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" Margin="12,5,0,0"> |
| 64 | + <Button x:Name="WhereColumnTitleVE" DockPanel.Dock="Right" Content="..." Click="WhereColumnTitleVE_Click" VerticalAlignment="Center" Style="{StaticResource @InputButtonStyle}" Margin="1,0,0,0" Width="30" Height="24"/> |
| 65 | + <ComboBox x:Name="WhereColumnTitle" Style="{StaticResource $FlatInputComboBoxStyle}" IsEditable="True" Height="25" VerticalAlignment="Top" LostKeyboardFocus="WhereColumnTitle_LostKeyboardFocus" SelectionChanged="WhereColumnTitle_SelectionChanged"/> |
| 66 | + </DockPanel> |
| 67 | + <ComboBox x:Name="WhereProperty" Grid.Row="1" Grid.Column="0" Style="{StaticResource $FlatInputComboBoxStyle}" Height="25" Margin="12,0,0,0" SelectionChanged="WhereProperty_SelectionChanged"/> |
| 68 | + <ComboBox x:Name="WhereOperator" Grid.Row="1" Grid.Column="1" Style="{StaticResource $FlatInputComboBoxStyle}" Height="25" Margin="12,0,0,0" SelectionChanged="WhereOperator_SelectionChanged"/> |
| 69 | + <Actions:UCValueExpression x:Name="WhereColumnValue" Grid.Row="1" Grid.Column="2" Height="25" Margin="12,12,12,12" LostFocus="WhereColumnValue_LostFocus" ToolTip="Enter the Value to be search by given Condition"/> |
66 | 70 | </Grid> |
67 | 71 | </StackPanel> |
68 | | - <Label Grid.Row="3" Grid.Column="0" Content="Description:" Style="{StaticResource @LabelStyle}" HorizontalAlignment="Stretch" Margin="0,10,0,0"/> |
| 72 | + <Label Grid.Row="3" Grid.Column="0" Content="Description:" Style="{StaticResource @LabelStyle}" HorizontalAlignment="Stretch" Margin="0,10,0,0"/> |
69 | 73 | <StackPanel Grid.Row="3" Grid.Column="1" x:Name="DescriptionPanel" Visibility="Visible" Margin="0,10,0,0" Grid.RowSpan="1" Grid.ColumnSpan="3"> |
70 | 74 | <Grid Margin="0,0,0,0"> |
71 | 75 | <Grid.RowDefinitions> |
72 | 76 | <RowDefinition Height="70"/> |
73 | 77 | </Grid.RowDefinitions> |
74 | | - <DockPanel x:Name="Description" Background="{StaticResource $BackgroundColor_White}" Grid.Row="1" > |
| 78 | + <DockPanel x:Name="Description" Background="{StaticResource $BackgroundColor_White}" Grid.Row="1"> |
75 | 79 | <ScrollViewer Background="White"> |
76 | | - <TextBlock x:Name="txtDescription" TextWrapping="Wrap" Style="{StaticResource @TextBlockStyle}" DockPanel.Dock="Top" Background="#FFEFEFF2"></TextBlock> |
| 80 | + <TextBlock x:Name="txtDescription" TextWrapping="Wrap" Style="{StaticResource @TextBlockStyle}" DockPanel.Dock="Top" Background="#FFEFEFF2"/> |
77 | 81 | </ScrollViewer> |
78 | 82 | </DockPanel> |
79 | 83 | </Grid> |
80 | 84 | </StackPanel> |
81 | 85 | <StackPanel x:Name="ControlActionPanle" Grid.Row="4" Grid.ColumnSpan="3"> |
82 | 86 | <Label HorizontalAlignment="Left" Style="{StaticResource @LabelStyle}">Selected Operation:</Label> |
83 | | - <ComboBox x:Name="ControlActionComboBox" Style="{StaticResource $FlatInputComboBoxStyle}"></ComboBox> |
| 87 | + <ComboBox x:Name="ControlActionComboBox" Style="{StaticResource $FlatInputComboBoxStyle}"/> |
84 | 88 | </StackPanel> |
85 | 89 | </Grid> |
86 | 90 | </Page> |
0 commit comments