mirror of
https://github.com/ApfelTeeSaft/MemScan.git
synced 2026-08-27 03:43:25 +00:00
9 lines
553 B
XML
9 lines
553 B
XML
<Window x:Class="MemScan.EditStringWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="Edit String" Height="200" Width="400">
|
|
<Grid>
|
|
<TextBox x:Name="StringTextBox" Width="300" Height="30" Margin="10" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
|
<Button Content="Save" Width="100" Height="30" Margin="10" HorizontalAlignment="Center" VerticalAlignment="Bottom" Click="SaveButton_Click"/>
|
|
</Grid>
|
|
</Window> |