ad38e4d3e1
This reverts commit 00a338c202.
32 lines
1.6 KiB
XML
32 lines
1.6 KiB
XML
<EgtWPFLib5:EgtCustomWindow x:Class="SaveFileDialogV"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:EgtWPFLib5="clr-namespace:EgtWPFLib5"
|
|
Title="{Binding Title}"
|
|
Style="{DynamicResource {x:Type EgtWPFLib5:EgtCustomWindow}}"
|
|
WindowStyle="None" ResizeMode="NoResize" TitleBarHeight="30" IsResizable="False"
|
|
IsMinimizable="False" WindowStartupLocation="CenterScreen" ShowInTaskbar="False"
|
|
Height="130" Width="300" Topmost="True"
|
|
DataContext="{Binding RelativeSource={RelativeSource Self}}">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="1*"/>
|
|
<RowDefinition Height="1*"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBox Margin="5" Height="24" x:Name="FilePath"
|
|
Text="{Binding WriteFileName, UpdateSourceTrigger=PropertyChanged}"
|
|
VerticalAlignment="Center" VerticalContentAlignment="Center"/>
|
|
|
|
<UniformGrid Columns="2" Grid.Row="1" Margin="0,0,0,5">
|
|
<Button IsDefault="True" Name="SaveBtn"
|
|
Content="{Binding SaveMsg}" Style="{DynamicResource EgtWPFLib5_InputButton}"/>
|
|
<Button IsCancel="True"
|
|
Content="{Binding CancelMsg}" Style="{DynamicResource EgtWPFLib5_InputButton}"/>
|
|
</UniformGrid>
|
|
|
|
</Grid>
|
|
|
|
</EgtWPFLib5:EgtCustomWindow>
|