44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<Window x:Class="mpvnet.EverythingWindow"
|
|
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"
|
|
xmlns:mpvnet="clr-namespace:mpvnet"
|
|
mc:Ignorable="d"
|
|
|
|
Title="Media File Search"
|
|
FontSize="13"
|
|
Height="300"
|
|
Width="600"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterOwner"
|
|
Loaded="Window_Loaded">
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" />
|
|
<RowDefinition></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
|
|
<TextBox Name="FilterTextBox"
|
|
Foreground="{x:Static mpvnet:Theme.Foreground}"
|
|
Background="{x:Static mpvnet:Theme.Background}"
|
|
PreviewKeyDown="FilterTextBox_PreviewKeyDown"
|
|
TextChanged="FilterTextBox_TextChanged"/>
|
|
|
|
<ListView Name="ListView"
|
|
Foreground="{x:Static mpvnet:Theme.Foreground}"
|
|
Background="{x:Static mpvnet:Theme.Background}"
|
|
Grid.Row="1"
|
|
MouseUp="ListView_MouseUp"
|
|
PreviewKeyDown="ListView_PreviewKeyDown">
|
|
|
|
<ListView.ItemContainerStyle>
|
|
<Style TargetType="ListBoxItem">
|
|
<Setter Property="HorizontalContentAlignment" Value="Stretch"></Setter>
|
|
</Style>
|
|
</ListView.ItemContainerStyle>
|
|
|
|
</ListView>
|
|
</Grid>
|
|
</Window> |