port from perforce

This commit is contained in:
2026-04-18 22:31:51 +02:00
commit 8d0ab5b7cc
8409 changed files with 3972376 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<Window x:Class="Intromat.Views.UserInputWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
WindowStartupLocation="CenterOwner"
ShowInTaskbar="False"
ResizeMode="NoResize"
Style="{DynamicResource CustomWindowStyle}"
mc:Ignorable="d" SizeToContent="Height"
Closing="UserInputWindow_OnClosing"
Title="Intromat" MinHeight="50" Width="300">
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<TextBlock x:Name="Header" Grid.Row="0" Text="Enter data:" Margin="5" />
<TextBox x:Name="Input" Grid.Row="1" Text="" Margin="5,0" TextChanged="Input_OnTextChanged" />
<StackPanel Grid.Row="2" Orientation="Horizontal" HorizontalAlignment="Right" Margin="5">
<Button x:Name="ButtonOK" IsDefault="True" Width="60" Margin="0,0,2,0" Click="ButtonOK_OnClick">OK</Button>
<Button x:Name="ButtonCancel" IsCancel="True" Width="60" Click="ButtonCancel_OnClick">Cancel</Button>
</StackPanel>
</Grid>
</Window>