-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
19 lines (19 loc) · 1.79 KB
/
MainWindow.xaml
File metadata and controls
19 lines (19 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Window x:Class="EdGo.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:EdGo"
mc:Ignorable="d"
Title="ED-GO Event Client" Height="370" Width="525" Closed="Window_Closed" Icon="satellite_icon-icons.com_60266.ico" ResizeMode="CanMinimize" StateChanged="Window_StateChanged">
<Grid>
<Button x:Name="edgoSettings" Content="ED-GO client settings " HorizontalAlignment="Left" Height="25" Margin="40,10,0,0" VerticalAlignment="Top" Width="467" Click="edgoSettings_Click"/>
<Ellipse Fill="#FFF4F4F5" HorizontalAlignment="Left" Height="25" Margin="10,10,0,0" Stroke="Black" VerticalAlignment="Top" Width="25"/>
<Button x:Name="buttonProcess" Content="Start" HorizontalAlignment="Left" Margin="40,54,0,0" VerticalAlignment="Top" Width="75" Click="buttonProcess_Click"/>
<TextBox x:Name="textOut" HorizontalAlignment="Left" Height="227" Margin="10,82,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="497" IsReadOnly="True" ScrollViewer.VerticalScrollBarVisibility="Visible" TextChanged="textOut_TextChanged"/>
<Button x:Name="buttonCompanion" Content="Companion API" HorizontalAlignment="Right" Margin="0,54,11,0" VerticalAlignment="Top" Width="114" Click="buttonCompanion_Click" Visibility="Hidden"/>
<TextBlock HorizontalAlignment="Left" Margin="10,310,0,0" VerticalAlignment="Top">
<Hyperlink NavigateUri="http://ed-go.ru" RequestNavigate="Hyperlink_RequestNavigate">Goto ED-GO Site</Hyperlink>
</TextBlock>
</Grid>
</Window>