How to achive UI as shown in backstage area e.g. Open

377
0
11-01-2019 03:24 AM
TomGeo
by
Occasional Contributor III

I couldn't find a guide on how to style the backstage area in ArcGIS Pro and the BackStage_PropertyPage project in the community samples contains only a header and a checkbox.

What components are used in the xaml to build and style the following UI?

My current attempt is:

<Grid Margin="20,0">
        <StackPanel>
            <TextBlock Style="{DynamicResource Esri_TextBlockBackStageTitle}" Text="{Binding TabHeading}" />
            <!-- design content for the tab here -->
            <Grid>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="Auto"/>
                    <ColumnDefinition Width="Auto"/>
                    <ColumnDefinition Width="*"/>
                </Grid.ColumnDefinitions>
                <Button x:Name="navItemStepper" Grid.Column="0"  Content="Stepper" 
                        MinHeight="52" FontSize="24" VerticalAlignment="Top"
                        Style="{DynamicResource Esri_ButtonBorderless}" Click="NavItemStepper_Click" />
                <Line Style="{StaticResource verticalLineBackstage}" />
                <Frame x:Name="faks_main" Grid.Column="2"  NavigationUIVisibility="Hidden" Margin="15,15,0,0"/>
            </Grid>
        </StackPanel>
    </Grid>
- We are living in the 21st century.
GIS moved on and nobody needs a format consisting out of at least three files! No, nobody needs shapefiles, not even for the sake of an exchange format. Folks, use GeoPackage to exchange data with other GIS!
0 Kudos
0 Replies