Skip to content

Commit

Permalink
Make version number selectable (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
srwi committed May 19, 2023
1 parent acaa435 commit 5687f3f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions EverythingToolbar/About.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@
</Style>
</StackPanel.Resources>
<TextBlock>EverythingToolbar</TextBlock>
<TextBlock Name="VersionTextBlock" />
<TextBox Name="VersionTextBlock"
Margin="23,5,15,5"
Background="Transparent"
BorderThickness="0"
IsReadOnly="True"
Text="{Binding Text, Mode=OneWay}" />
<TextBlock>Copyright © 2023 Stephan Rumswinkel</TextBlock>
<TextBlock>
<Run Text="{x:Static properties:Resources.AboutLicense}" />: MIT
Expand All @@ -53,8 +58,7 @@
Grid.Row="2"/>
<Button Grid.Row="2"
Margin="250, 10, 10, 10"
Click="Button_Click">
OK
</Button>
Click="Button_Click" Content="{x:Static properties:Resources.AboutOK}" />

</Grid>
</Window>

0 comments on commit 5687f3f

Please sign in to comment.