Prompt.xaml 1.33 KB
<flyctrllib:WindowBigClose  
    x:Class="FLY.ControlLibrary.Prompt"
    xmlns:flyctrllib="clr-namespace:FLY.ControlLibrary"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    SizeToContent="WidthAndHeight">

    <Window.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/FLY.ControlLibrary;component/Themes/Dictionary_MyStyle.xaml"/>
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Window.Resources>

    <Grid TextBlock.FontSize="24" TextBlock.FontStyle="Normal" Background="WhiteSmoke">
        <StackPanel Orientation="Vertical" Margin="5" MinWidth="400">
            <TextBlock x:Name="textblock_message" Text="message" FontSize="40" Margin="10,40,10,10" />
            <TextBox x:Name="textbox_input" Style="{StaticResource TextBoxStyle_FieldContent}"  Tag="Full" Width="auto" Margin="10,10,10,40" />
            <Button Style="{StaticResource ButtonStyle_apply}" Click="button_ok_Click"/>
        </StackPanel>
    </Grid>
    
    </flyctrllib:WindowBigClose >