|
72 | 72 | </Style> |
73 | 73 |
|
74 | 74 | <!-- datagrid hide selected cell borders --> |
75 | | - <!--<Style TargetType="{x:Type DataGridCell}"> |
| 75 | + <Style TargetType="{x:Type DataGridCell}"> |
76 | 76 | <Setter Property="BorderBrush" Value="Transparent" /> |
77 | 77 | <Setter Property="FocusVisualStyle" Value="{x:Null}" /> |
78 | 78 | <Setter Property="Margin" Value="0,0.5,0,0.5" /> |
|
84 | 84 | <Setter Property="Background" Value="Transparent" /> |
85 | 85 | </Trigger> |
86 | 86 | </Style.Triggers> |
87 | | - </Style>--> |
| 87 | + </Style> |
88 | 88 |
|
89 | 89 | <Style x:Key="NoFocusCellStyle" TargetType="DataGridCell"> |
90 | | - <Setter Property="Focusable" Value="False"/> |
| 90 | + <!--<Setter Property="Focusable" Value="False"/>--> |
91 | 91 | </Style> |
92 | 92 |
|
93 | 93 | <!-- custom buttons --> |
|
225 | 225 |
|
226 | 226 | </Window.Resources> |
227 | 227 |
|
228 | | - |
229 | | - |
| 228 | + |
| 229 | + |
230 | 230 |
|
231 | 231 | <!-- UI --> |
232 | 232 |
|
|
387 | 387 | <Button Grid.Column="3" Style="{StaticResource CustomButton}" x:Name="btnExplore" Background="{DynamicResource ButtonBackground}" Foreground="#FFC1C1C1" Margin="8,0,0,0" BorderBrush="{x:Null}" Click="BtnExplore_Click" > |
388 | 388 | <Label Foreground="{DynamicResource ButtonForeground}">_Explore</Label> |
389 | 389 | </Button> |
390 | | - |
391 | 390 | </Grid> |
392 | 391 | </Grid> |
393 | 392 | </TabItem> |
|
441 | 440 | <!-- bottom buttoms row --> |
442 | 441 | <Grid VerticalAlignment="Bottom" Margin="4,0,8,5"> |
443 | 442 | <Grid.ColumnDefinitions> |
| 443 | + <ColumnDefinition Width="20*" /> |
444 | 444 | <ColumnDefinition Width="20*" /> |
445 | 445 | <ColumnDefinition Width="45*" /> |
446 | 446 | <ColumnDefinition Width="15*" /> |
| 447 | + |
447 | 448 | </Grid.ColumnDefinitions> |
448 | 449 | <Grid.RowDefinitions> |
449 | 450 | <RowDefinition Height="32" /> |
450 | 451 | </Grid.RowDefinitions> |
451 | | - <Button Grid.Column="0" Style="{StaticResource CustomButton}" x:Name="btnRunUnity" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="5,0,0,0" BorderBrush="{x:Null}"> |
452 | | - <Label Foreground="{DynamicResource ButtonForeground}">_Upgrade</Label> |
| 452 | + <Button Grid.Column="0" Style="{StaticResource CustomButton}" x:Name="btnReleaseNotes" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="5,0,0,0" BorderBrush="{x:Null}" Click="BtnReleaseNotes_Click"> |
| 453 | + <Label Foreground="{DynamicResource ButtonForeground}" Content="Release Notes"/> |
| 454 | + </Button> |
| 455 | + <Button Grid.Column="1" Style="{StaticResource CustomButton}" x:Name="btnUpdateUnity" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="8,0,0,0" BorderBrush="{x:Null}" Click="BtnUpdateUnity_Click"> |
| 456 | + <Label Foreground="{DynamicResource ButtonForeground}" Content="Update"/> |
453 | 457 | </Button> |
454 | | - <Button Grid.Column="1" Style="{StaticResource CustomButton}" x:Name="btnReleaseNotes" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="8,0,0,0" BorderBrush="{x:Null}" > |
| 458 | + <Button Grid.Column="2" Style="{StaticResource CustomButton}" x:Name="btnRunUnity" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="8,0,0,0" BorderBrush="{x:Null}" Click="BtnRunUnity_Click" > |
455 | 459 | <Label Foreground="{DynamicResource ButtonForeground}">_Run Unity</Label> |
456 | 460 | </Button> |
457 | | - <Button Grid.Column="3" Style="{StaticResource CustomButton}" x:Name="btnExploreUnity" Background="{DynamicResource ButtonBackground}" Margin="8,0,0,0" BorderBrush="{x:Null}" Foreground="{DynamicResource ButtonForeground}" > |
| 461 | + <Button Grid.Column="3" Style="{StaticResource CustomButton}" x:Name="btnExploreUnity" Background="{DynamicResource ButtonBackground}" Margin="8,0,0,0" BorderBrush="{x:Null}" Foreground="{DynamicResource ButtonForeground}" Click="BtnExploreUnity_Click" > |
458 | 462 | <Label Foreground="{DynamicResource ButtonForeground}">_Explore</Label> |
459 | 463 | </Button> |
460 | 464 |
|
|
0 commit comments