-
Notifications
You must be signed in to change notification settings - Fork 520
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolves problems found in certification (#424)
Blend renderer showed the wrong title on page Viewshed for camera had a squished button in some circumstances Tested on all platforms
- Loading branch information
Showing
2 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
14 changes: 8 additions & 6 deletions
14
src/Forms/Shared/Samples/Analysis/ViewshedCamera/ViewshedCamera.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:esriUI="clr-namespace:Esri.ArcGISRuntime.Xamarin.Forms;assembly=Esri.ArcGISRuntime.Xamarin.Forms" | ||
x:Class="ArcGISRuntimeXamarin.Samples.ViewshedCamera.ViewshedCamera"> | ||
<Grid> | ||
<esriUI:SceneView x:Name="MySceneView"/> | ||
<Grid.RowDefinitions> | ||
<RowDefinition Height="*" /> | ||
<RowDefinition Height="Auto" /> | ||
</Grid.RowDefinitions> | ||
<esriUI:SceneView x:Name="MySceneView" Grid.Row="0" /> | ||
<Button x:Name="UpdateObserverButton" | ||
Text="Viewshed from Here" | ||
WidthRequest="160" HeightRequest="30" | ||
HorizontalOptions="Center" VerticalOptions="Start" | ||
Margin="0,5" | ||
Clicked="UpdateObserverWithCamera"/> | ||
Clicked="UpdateObserverWithCamera" | ||
Grid.Row="1" /> | ||
</Grid> | ||
</ContentPage> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters