You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
1.3 KiB
19 lines
1.3 KiB
<Window x:Class="dvmconsole.DigitalPageWindow"
|
|
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:dvmconsole"
|
|
mc:Ignorable="d" Icon="/dvmconsole;component/Assets/page.png"
|
|
Title="Page Subscriber" Height="141" Width="330" WindowStartupLocation="CenterOwner">
|
|
<Grid>
|
|
<Button Name="SendPageButton" HorizontalAlignment="Left" Margin="108,66,0,0" VerticalAlignment="Top" Click="SendPageButton_Click" Width="120" Height="24">
|
|
<TextBlock TextAlignment="Center" Margin="0,-21,0,0">Send</TextBlock>
|
|
</Button>
|
|
<TextBox HorizontalAlignment="Left" Name="DstIdText" Margin="108,43,0,0" TextWrapping="Wrap" Text="" MaxLength="12" VerticalAlignment="Top" Width="120"/>
|
|
<Label Content="Radio ID:" HorizontalAlignment="Left" Margin="45,39,0,0" VerticalAlignment="Top"/>
|
|
<ComboBox HorizontalAlignment="Left" Name="SystemCombo" Margin="108,16,0,0" VerticalAlignment="Top" Width="120"/>
|
|
<Label Content="System:" HorizontalAlignment="Left" Margin="53,14,0,0" VerticalAlignment="Top"/>
|
|
</Grid>
|
|
</Window>
|