-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
24 lines (21 loc) · 1.37 KB
/
MainWindow.xaml
File metadata and controls
24 lines (21 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Window x:Class="pfcode_stations.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"
xmlns:local="clr-namespace:pfcode_stations"
mc:Ignorable="d"
ResizeMode="CanMinimize"
WindowStartupLocation="CenterScreen"
Title="Stations" Height="490" Width="250">
<Grid>
<StackPanel Background="#222426">
<ListView x:Name="stationName" d:ItemsSource="{d:SampleData ItemCount=18}" SelectionChanged="stationName_SelectionChanged" Cursor="Hand" Foreground="White" Height="420" Background="#222426" Margin="0" Padding="5" BorderThickness="0" FontSize="14"/>
<StackPanel Orientation="Horizontal">
<Button x:Name="stopButton" ToolTip="Stop current stream" Click="StopButton_Click" Width="25" Height="20" HorizontalAlignment="Left" Margin="10,5,0,0" Cursor="Hand" Background="#fff" Visibility="Collapsed">
<Image Source="/resources/icons8-no-audio-24.png" Width="14" Height="14" Margin="0,0,0,0" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Button>
</StackPanel>
</StackPanel>
</Grid>
</Window>