|
474 | 474 | <DataGrid x:Name="dataGridUpdates" SelectionMode="Single" Margin="4,30,2,42" Background="{x:Null}" BorderBrush="{x:Null}" ColumnHeaderStyle="{StaticResource HeaderStyle}" Padding="0" HorizontalScrollBarVisibility="Disabled" HeadersVisibility="Column" Foreground="#FFD8D8D8" HorizontalGridLinesBrush="#4C000000" VerticalGridLinesBrush="#19000000">
|
475 | 475 |
|
476 | 476 | <DataGrid.Columns>
|
| 477 | + <DataGridTextColumn Binding="{Binding ReleaseDate}" ClipboardContentBinding="{x:Null}" Header="ReleaseDate" IsReadOnly="True"/> |
477 | 478 | <DataGridTextColumn Binding="{Binding Version}" ClipboardContentBinding="{x:Null}" Header="Version" IsReadOnly="True" MinWidth="123"/>
|
478 |
| - <DataGridTextColumn Binding="{Binding Path}" ClipboardContentBinding="{x:Null}" Header="Path" IsReadOnly="True"/> |
479 |
| - <DataGridTextColumn Binding="{Binding Installed}" ClipboardContentBinding="{x:Null}" Header="Installed" IsReadOnly="True"/> |
480 | 479 | </DataGrid.Columns>
|
481 | 480 |
|
482 | 481 | <!-- right click context menu -->
|
|
485 | 484 | <MenuItem Header="Copy Unity Version" />
|
486 | 485 | </ContextMenu>
|
487 | 486 | </DataGrid.ContextMenu>
|
| 487 | + <local:Updates ReleaseDate="2020-10-10" Version="5000.1.2.3"/> |
488 | 488 |
|
489 | 489 | <!-- sample data for testing -->
|
490 |
| - <local:UnityInstallations Version="3000.1.2f1" Path="c:/proggies/unity3000" Installed="12.12.2020" /> |
491 | 490 | </DataGrid>
|
492 | 491 |
|
493 | 492 | <!-- bottom buttoms row -->
|
|
536 | 535 | </Border>
|
537 | 536 | </Grid>
|
538 | 537 | </Grid>
|
539 |
| - |
540 | 538 | </TabItem>
|
541 | 539 |
|
542 | 540 | <!-- Tab: Settings -->
|
|
557 | 555 |
|
558 | 556 | <!-- top labels -->
|
559 | 557 | <Label Grid.Row="0" Content="Unity Installation Parent Folders" Foreground="{DynamicResource ButtonForeground}" HorizontalAlignment="Left" VerticalAlignment="Bottom"></Label>
|
560 |
| - <Label Grid.Row="0" Content=".. Installations" Foreground="{DynamicResource ButtonForeground}" HorizontalAlignment="Right" VerticalAlignment="Bottom"></Label> |
| 558 | + <Label Grid.Row="0" Content="Found .. Installations" Foreground="{DynamicResource ButtonForeground}" HorizontalAlignment="Right" VerticalAlignment="Bottom"></Label> |
561 | 559 | <!-- locations list -->
|
562 | 560 | <ListBox Grid.Row="1" Background="#FF3C3C3C" Margin="4,0,2,0" />
|
563 | 561 | <!-- locations add/remove -->
|
564 |
| - <Button Grid.Row="2" Style="{StaticResource CustomButton}" x:Name="btnASASDFasdf" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="5,0,0,0" BorderBrush="{x:Null}" HorizontalAlignment="Left" VerticalAlignment="Center"> |
565 |
| - <Label Foreground="{DynamicResource ButtonForeground}">_asdf</Label> |
566 |
| - </Button> |
| 562 | + <StackPanel Grid.Row="2" Orientation="Horizontal" Margin="0" > |
| 563 | + <Button Style="{StaticResource CustomButton}" x:Name="btnASASDFasdf" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="5,0,0,0" BorderBrush="{x:Null}" HorizontalAlignment="Left" VerticalAlignment="Center"> |
| 564 | + <Label Foreground="{DynamicResource ButtonForeground}">_Add Folder</Label> |
| 565 | + </Button> |
| 566 | + <Button Style="{StaticResource CustomButton}" x:Name="btnASASDFasdf2" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="5,0,0,0" BorderBrush="{x:Null}" HorizontalAlignment="Left" VerticalAlignment="Center"> |
| 567 | + <Label Foreground="{DynamicResource ButtonForeground}">_Remove Folder</Label> |
| 568 | + </Button> |
| 569 | + </StackPanel> |
567 | 570 | <!-- settings-->
|
| 571 | + <StackPanel Grid.Row="3" Orientation="Vertical" Margin="5,10,3,3" > |
| 572 | + <CheckBox Content="Minimize to taskbar" Foreground="{DynamicResource ButtonForeground}"></CheckBox> |
| 573 | + <CheckBox Content="Register Explorer context menu" Foreground="{DynamicResource ButtonForeground}"></CheckBox> |
| 574 | + <CheckBox Content="Close after opening project" Foreground="{DynamicResource ButtonForeground}"></CheckBox> |
| 575 | + <CheckBox Content="Close after launching from Explorer" Foreground="{DynamicResource ButtonForeground}"></CheckBox> |
| 576 | + <CheckBox Content="Show Arguments Column" Foreground="{DynamicResource ButtonForeground}"></CheckBox> |
| 577 | + <CheckBox Content="Show Git Branch Column" Foreground="{DynamicResource ButtonForeground}"></CheckBox> |
| 578 | + </StackPanel> |
| 579 | + |
568 | 580 | <!-- links-->
|
| 581 | + <Button Grid.Row="4" Style="{StaticResource CustomButton}" x:Name="btnASASDFasdf22" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="5,0,0,0" BorderBrush="{x:Null}" HorizontalAlignment="Left" VerticalAlignment="Center"> |
| 582 | + <Label Foreground="{DynamicResource ButtonForeground}">_View in Github</Label> |
| 583 | + </Button> |
569 | 584 |
|
570 | 585 | </Grid>
|
571 | 586 | </TabItem>
|
|
0 commit comments