Skip to content

Commit

Permalink
WPF: Fix UI bug with screenshot tool (#1064)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZackAllen authored Jul 22, 2022
1 parent 830883a commit 5ed0db2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/WPF/ArcGISRuntime.WPF.Viewer/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:ArcGISRuntime.Controls"
xmlns:local="clr-namespace:ArcGISRuntime.WPF.Viewer"
xmlns:converters="clr-namespace:ArcGISRuntime.WPF.Viewer.Converters"
xmlns:local="clr-namespace:ArcGISRuntime.WPF.Viewer"
Title="ArcGIS Runtime for .NET Samples"
Icon="Assets/ApplicationIcons/windows-desktop-256.ico"
WindowStartupLocation="CenterScreen"
Expand Down Expand Up @@ -188,7 +188,8 @@
VerticalAlignment="Center"
Background="White"
BorderThickness="0"
Click="ScreenshotButton_Click">
Click="ScreenshotButton_Click"
Visibility="Hidden">
<Path Data="M14.5 8a4.5 4.5 0 1 0 4.5 4.5A4.505 4.505 0 0 0 14.5 8zm0 8a3.5 3.5 0 1 1 3.5-3.5 3.504 3.504 0 0 1-3.5 3.5zM8 9H4V8h4zm13 11H3a2.002 2.002 0 0 1-2-2V8a2.002 2.002 0 0 1 2-2h1V5h4v1h1.5a.5.5 0 0 0 .5-.5A1.502 1.502 0 0 1 11.5 4h6A1.502 1.502 0 0 1 19 5.5a.5.5 0 0 0 .5.5H21a2.002 2.002 0 0 1 2 2v10a2.002 2.002 0 0 1-2 2zM3 7a1.001 1.001 0 0 0-1 1v10a1.001 1.001 0 0 0 1 1h18a1.001 1.001 0 0 0 1-1V8a1.001 1.001 0 0 0-1-1h-1.5A1.502 1.502 0 0 1 18 5.5a.5.5 0 0 0-.5-.5h-6a.5.5 0 0 0-.5.5A1.502 1.502 0 0 1 9.5 7H7V6H5v1z" Stroke="Black" />
</Button>
<RadioButton x:Name="SampleRadTab"
Expand Down

0 comments on commit 5ed0db2

Please sign in to comment.