34 lines
1.5 KiB
XML
34 lines
1.5 KiB
XML
<Window x:Class="WPF_12_ListView.MainWindow"
|
|
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"
|
|
mc:Ignorable="d"
|
|
Title="MainWindow" Height="450" Width="800">
|
|
<Grid ShowGridLines="True">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="75" />
|
|
<RowDefinition />
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition />
|
|
<ColumnDefinition />
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<TextBox Name="TextBox" Grid.Row="0" Grid.Column="0" Height="35" FontSize="16" />
|
|
<Button Name="AddButton" Grid.Row="0" Grid.Column="1" Width="50" HorizontalAlignment="Left"
|
|
Click="AddButton_OnClick">
|
|
Add
|
|
</Button>
|
|
<Button Name="DeletedButton" Grid.Row="0" Grid.Column="1" Width="50" HorizontalAlignment="Left"
|
|
Margin="60 0 0 0" Click="DeletedButton_OnClick">
|
|
Deleted
|
|
</Button>
|
|
<Button Name="ClearButton" Grid.Row="0" Grid.Column="1" Width="50" HorizontalAlignment="Left"
|
|
Margin="120 0 0 0" Click="ClearButton_OnClick">
|
|
Clear
|
|
</Button>
|
|
<ListView Name="ListView" Grid.Column="0" Grid.Row="1" Grid.ColumnSpan="2" SelectionMode="Extended" />
|
|
</Grid>
|
|
</Window> |