| 123456789101112131415161718192021 |
- <Window x:Class="Xilium.CefGlue.WPF.WpfCefJSPrompt"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Title="JavaScript Prompt" SizeToContent="WidthAndHeight" WindowStyle="ToolWindow" Topmost="True" WindowStartupLocation="CenterScreen" ShowInTaskbar="False">
- <Grid>
- <DockPanel>
- <Grid DockPanel.Dock="Bottom" Background="WhiteSmoke">
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
- <Button DockPanel.Dock="Bottom" Content="Ok" Margin="10" Height="23" HorizontalAlignment="Right" Width="80" Click="OkButton_Click" />
- <Button DockPanel.Dock="Bottom" Content="Cancel" Margin="0,10,10,10" Height="23" HorizontalAlignment="Right" Width="80" Click="CancelButton_Click" />
- </StackPanel>
- </Grid>
- <Grid DockPanel.Dock="Top" MinHeight="90" MinWidth="220">
- <StackPanel VerticalAlignment="Center">
- <TextBlock Name="messageTextBlock" Margin="12" VerticalAlignment="Center" Text="Message" />
- <TextBox Name="inputTextBox" Margin="12,0,12,12" VerticalAlignment="Stretch" />
- </StackPanel>
- </Grid>
- </DockPanel>
- </Grid>
- </Window>
|