40 lines
2.0 KiB
XML
40 lines
2.0 KiB
XML
<base:BaseView x:Class="DBImportExport.DBExportView"
|
|
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:root="clr-namespace:DBImportExport.Resources"
|
|
xmlns:base="clr-namespace:DTS.Common.Base;assembly=DTS.Common"
|
|
xmlns:i="http://schemas.microsoft.com/xaml/behaviors">
|
|
<base:BaseView.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/DTS.Common;component/Themes/CommonStyles.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<Style TargetType="TextBlock" BasedOn="{StaticResource PageContentTextStyle}" >
|
|
<Setter Property="VerticalAlignment" Value="Top"/>
|
|
<Setter Property="HorizontalAlignment" Value="Left"/>
|
|
<Setter Property="Margin" Value="5" />
|
|
</Style>
|
|
<Style TargetType="TextBox">
|
|
<Setter Property="Margin" Value="5" />
|
|
</Style>
|
|
<Style TargetType="Button">
|
|
<Setter Property="Margin" Value="5" />
|
|
</Style>
|
|
</ResourceDictionary>
|
|
</base:BaseView.Resources>
|
|
<Grid>
|
|
<WrapPanel Orientation="Horizontal">
|
|
<TextBlock Text="{root:TranslateExtension ExportView_File}" Margin="5"/>
|
|
<TextBox Width="200" Text="{Binding ExportFileName}" Margin="5"/>
|
|
<Button Content="{root:TranslateExtension ExportView_Browse}">
|
|
<i:Interaction.Triggers>
|
|
<i:EventTrigger EventName="Click">
|
|
<i:InvokeCommandAction Command="{Binding ExportBrowseCommand}" />
|
|
</i:EventTrigger>
|
|
</i:Interaction.Triggers>
|
|
</Button>
|
|
</WrapPanel>
|
|
</Grid>
|
|
</base:BaseView>
|