OliviaAddInPro/View/PaneLimpiezaSub2.xaml

26 lines
1.4 KiB
XML

<UserControl x:Class="OliviaAddInPro.PaneLimpiezaSub2View"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:extensions="clr-namespace:ArcGIS.Desktop.Extensions;assembly=ArcGIS.Desktop.Extensions"
xmlns:ui="clr-namespace:OliviaAddInPro"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300"
d:DataContext="{Binding Path=ui.PaneLimpiezaSub2ViewModel}">
<UserControl.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<extensions:DesignOnlyResourceDictionary Source="pack://application:,,,/ArcGIS.Desktop.Framework;component\Themes\Default.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</UserControl.Resources>
<Grid>
<Border BorderBrush="{DynamicResource Esri_BorderBrush}" >
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding DisplayName}" Margin="50" Style="{DynamicResource Esri_TextBlockH4}" HorizontalAlignment="Center"></TextBlock>
</StackPanel>
</Border>
</Grid>
</UserControl>