26
|
1 <Window x:Class="Client.MainWindow"
|
|
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
28
|
4 Title="MainWindow"
|
|
5 Width="525"
|
|
6 Height="350">
|
26
|
7 <Grid>
|
28
|
8 <StackPanel>
|
29
|
9 <Button Name="btnMsmq" Content="Msmq" Click="btnMsmq_Click" />
|
28
|
10 <Button Name="btnSockets" Content="Sockets" />
|
|
11 <Button Name="btnRabbit"
|
|
12 Click="BtnRabbitClick"
|
|
13 Content="Rabbit" />
|
|
14 <Button Name="btnRabbitProto" Content="Rabbit Proto" />
|
|
15 </StackPanel>
|
26
|
16 </Grid>
|
|
17 </Window>
|