Question WPF window with 2 tabs only show design of 1 tab

YvesTh

New member
Joined
Feb 12, 2023
Messages
2
Programming Experience
Beginner
Hi all

New here, and was hoping someone could shed some light on the problem I am having.
I am trying to edit a WPF design on a 2 tab window
For whatever reason its not showing the design of tab 2.
When I click the tabs it just selects the tab button but doesn't load the design.
So i am only able to see the first/default tab.

Anybody have any idea what this could be?
Had someone try it on his PC which was running VS 2019 Pro which had no issue.
So i tried installing VS 2019 Pro myself, but for me this didn't show any design at all.

Figured it was PC related so installed VS2022 on another PC but same issue 2nd tab design doesn't show when i click the tab.

Does anybody have an idea what's going on here?

Thanks

Screenshot 2023-02-12 215543.jpg
 
Without seeing your XAML, it is very hard to tell what maybe going wrong.
 
Without seeing your XAML, it is very hard to tell what maybe going wrong.

I don't think its related to the code.
Since it works for someone else.

But here it is below.

C#:
<telerik:RadRibbonWindow
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
        xmlns:local="clr-namespace:Camera" x:Class="Camera.AdditionalSetup"
      
    Title="AdditionalSetup"
        Width="1200"
        Height="700"
        IsTitleVisible="True"
    WindowStartupLocation="CenterScreen"
    Background="Gray"
                >

    <Grid>

        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="1*" />

        </Grid.ColumnDefinitions>

        <Grid.RowDefinitions>
            <RowDefinition />
            <RowDefinition Height="Auto"/>

        </Grid.RowDefinitions>

        <telerik:RadTabControl  Background="LightGray" Grid.Row="0" Grid.Column="0" HorizontalAlignment="Stretch"  VerticalAlignment="Stretch">
            <telerik:RadTabItem x:Name="SetupRoom" Header=" Room Setup">
                <Grid Background="Transparent">
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="117*" />
                        <ColumnDefinition Width="1081*"/>
                    </Grid.ColumnDefinitions>

                    <Grid.RowDefinitions>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="auto"/>
                        <RowDefinition Height="auto"/>
                    </Grid.RowDefinitions>

                    <StackPanel Grid.Row="1" Grid.ColumnSpan="2" Margin="0,0,0,32"  >

                        <Grid Background="Transparent">
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="0.3*" />
                                <ColumnDefinition Width="0.4*"/>
                                <ColumnDefinition Width="0.5*" />
                                <ColumnDefinition Width="0.5*" />
                                <ColumnDefinition Width="4*" />
                            </Grid.ColumnDefinitions>

                            <Grid.RowDefinitions>
                                <RowDefinition Height="*"/>
                                <RowDefinition Height="*"/>
                                <RowDefinition Height="*"/>
                                <RowDefinition Height="*"/>
                                <RowDefinition Height="*"/>
                            </Grid.RowDefinitions>

                            <StackPanel Grid.Row="1" Grid.ColumnSpan="5"  Margin="0,10,0,10" >
                                <TextBlock TextWrapping="Wrap"  Margin="2"  Text=" Use use blow input field to determine scan range"/>
                            </StackPanel>

                            <StackPanel Grid.Row="2" Grid.Column="0"    >
                                <telerik:Label Content="FROM : "></telerik:Label>
                            </StackPanel>


                            <StackPanel Grid.Row="2" Grid.Column="1"  >
                                <telerik:RadWatermarkTextBox   
                                 x:Name="fromID" Text="1"  WatermarkContent="number" />

                            </StackPanel>

                            <StackPanel Grid.Row="2" Grid.Column="2" Margin="20 ,0,0,0" >

                                <telerik:RadButton x:Name="btnScan"   FontWeight="Medium" Content="Scan" VerticalAlignment="Stretch"    HorizontalAlignment="Stretch" Margin="0,0,0,4"  />

                            </StackPanel>

                            <StackPanel Grid.Row="2" Grid.Column="3" Margin="20 ,0,0,0" >

                                <telerik:RadButton x:Name="btnReloadDb"   FontWeight="Medium" Content="Reload Db" VerticalAlignment="Center"    HorizontalAlignment="Stretch" Margin="0,0,0,4"  />

                            </StackPanel>


                            <StackPanel Grid.Row="3" Grid.Column="0"   Margin="0 ,5,0,0" >
                                <telerik:Label Content="TO : "></telerik:Label>
                            </StackPanel>


                            <StackPanel Grid.Row="3" Grid.Column="1"  Margin="0 ,5,0,0">
                                <telerik:RadWatermarkTextBox   
                                 x:Name="TO" Text="10"  WatermarkContent="number" />

                            </StackPanel>

                            <StackPanel Grid.Row="4"   Grid.ColumnSpan="5" Margin="0 ,10,0,0">
                                <Separator VerticalAlignment="Stretch"/>

                            </StackPanel>
                        </Grid>

                    </StackPanel>
                    <StackPanel Grid.Row="1" Grid.ColumnSpan="2" Margin="0,108,0,32" Grid.RowSpan="2"  >
                        <Grid>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="2*" />
                                <ColumnDefinition Width="2*" />
                                <ColumnDefinition Width="2*" />
                                <ColumnDefinition Width="2*" />
                                <ColumnDefinition Width="2*" />
                                <ColumnDefinition Width="2*" />
                            </Grid.ColumnDefinitions>

                            <Grid.RowDefinitions>
                                <RowDefinition Height="*"/>
                                <RowDefinition Height="*"/>
                            </Grid.RowDefinitions>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Column="0" Grid.Row="0">
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se001"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access" Text="SET 1 ACCESS (OUT)"   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="0"  Grid.Column="1" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se1"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access1" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="0"  Grid.Column="2" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se11"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access12" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="0"  Grid.Column="3" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se21"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access13" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="0"  Grid.Column="4" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se221"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access14" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="0"  Grid.Column="5" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se113"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access15" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>

                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Column="0" Grid.Row="2">
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Setup PPE">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access2" Text=" "   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="2"  Grid.Column="1" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se51"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access21" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="2"  Grid.Column="2" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se16"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access212" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="2"  Grid.Column="3" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se19"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access213" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="2"  Grid.Column="4" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se81"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access214" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                            <Border  BorderThickness="1,1,1,1" BorderBrush="Black" Margin="5, 5 , 5 , 5"  Grid.Row="2"  Grid.Column="5" >
                                <StackPanel  >
                                    <Grid>
                                        <Grid.ColumnDefinitions>
                                            <ColumnDefinition Width="1*" />
                                            <ColumnDefinition Width="1*" />
                                        </Grid.ColumnDefinitions>

                                        <Grid.RowDefinitions>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                            <RowDefinition Height="*"/>
                                        </Grid.RowDefinitions>
                                        <StackPanel Grid.ColumnSpan="2" Margin="0,10,0,0" >
                                            <Image HorizontalAlignment="Center" Height="30" Source="/resources/Image/security-camera.png" />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="0"  >
                                            <telerik:Label Content="Selected Room" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="1" Grid.Column="1"  >
                                            <telerik:Label Content="Selected Gas S/N" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="0"   Margin="5,0,0,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="101.10.10.1">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="2" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="Unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="3" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Selected Alarm Setup" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>


                                        <StackPanel Grid.Row="4" Grid.Column="0"  Margin="5,0,5,0" >
                                            <telerik:RadDropDownButton AutoOpenDelay="0:0:0.0"
                           Content="unset">
                                                <telerik:RadDropDownButton.DropDownContent>
                                                    <ListBox>
                                                        <ListBoxItem Content="Item 1" />
                                                        <ListBoxItem Content="Item 2" />
                                                        <ListBoxItem Content="Item 3" />
                                                    </ListBox>
                                                </telerik:RadDropDownButton.DropDownContent>
                                            </telerik:RadDropDownButton>
                                        </StackPanel>

                                        <StackPanel Grid.Row="4" Grid.Column="1"   Margin="5,0,5,0">
                                            <telerik:RadButton x:Name="se01"  Content="Setup PPE"  Grid.Column="1" HorizontalAlignment="Stretch"  />
                                        </StackPanel>

                                        <StackPanel Grid.Row="5" Grid.ColumnSpan="2"  >
                                            <telerik:Label Content="Room Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />
                                        </StackPanel>
                                        <StackPanel Grid.Row="6" Grid.ColumnSpan="2" Margin="3,5,0,5" >
                                            <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="4,4,4,4"
          Grid.Column="1"  x:Name="access215" Text=""   />
                                        </StackPanel>
                                    </Grid>




                                </StackPanel>
                            </Border>
                        </Grid>
                    </StackPanel>
                    <StackPanel Grid.Row="2" Grid.ColumnSpan="2" Margin="0,431,0,10">
                        <Grid>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="2*" />
                                <ColumnDefinition Width="2*" />
                            </Grid.ColumnDefinitions>

                            <Grid.RowDefinitions>
                                <RowDefinition Height="*"/>
                            </Grid.RowDefinitions>
                            <StackPanel Grid.Row="1" Grid.Column="0"  Margin="0,0,10,0"  >
                                <telerik:RadButton x:Name="btnSaveConfig" Width="100" Content="Save Config" FontWeight="Medium"  Grid.Column="1" HorizontalAlignment="Right"    />
                            </StackPanel>


                            <StackPanel Grid.Row="1" Grid.Column="1" Margin="10,0,0,0"  >
                                <telerik:RadButton x:Name="btnContinue" Width="100" FontWeight="Medium" Content="Continue"  Grid.Column="1" HorizontalAlignment="Left"    />
                            </StackPanel>
                        </Grid>
                    </StackPanel>
                </Grid>






            </telerik:RadTabItem>









            <telerik:RadTabItem x:Name="RroomSetup" Header="Additional Setup">
                <Grid>

                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="2*" />
                        <ColumnDefinition Width="2*" />
                        <ColumnDefinition Width="2*" />
                    </Grid.ColumnDefinitions>

                    <Grid.RowDefinitions>
                        <RowDefinition Height="auto"/>
                    </Grid.RowDefinitions>



                    <StackPanel Grid.Row="1"   >
                        <Grid>
                            <Grid.Resources>

                                <local:AlarmSampleData x:Key="DataSource"/>
                            </Grid.Resources>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="80" />
                            </Grid.ColumnDefinitions>
                            <Grid.RowDefinitions>
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                            </Grid.RowDefinitions>
                            <StackPanel Grid.ColumnSpan="3"   >
                                <TextBlock TextWrapping="Wrap"  Margin="2"  Text=" Use This form To add and remove Serial Number for gas detection to the database"/>
                            </StackPanel>
                            <StackPanel Grid.Row="1" Grid.ColumnSpan="3" Margin="10"  >
                                <TextBlock TextWrapping="Wrap" Grid.Row="3"
          Grid.ColumnSpan="2"   Text="Once your are done click the save button and assign gas detection to room of choice"/>
                            </StackPanel>

                            <StackPanel Grid.Row="2" Grid.Column="3" >
                                <telerik:RadButton x:Name="save" Width="70" Content="Save"  FontWeight="Medium" HorizontalAlignment="Right"  Margin="0,10,0,0" />
                                <telerik:RadButton x:Name="Reload" Width="70" Content="Reload"  FontWeight="Medium"   HorizontalAlignment="Right" Margin="0,10,0,0" />
                            </StackPanel>
                            <StackPanel Grid.Column="0" Grid.Row="2" Grid.ColumnSpan="2" >


                                <telerik:RadGridView x:Name="radGridView01"  ShowGroupPanel="False" ItemsSource="{Binding Source={StaticResource DataSource}, Path=Alarm}"
                                AutoGenerateColumns="False" Width="auto" Height="416">
                                    <telerik:RadGridView.Columns>
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding id}" Header="Serial Number"  />
                                    </telerik:RadGridView.Columns>


                                </telerik:RadGridView>

                            </StackPanel>
                            <StackPanel Grid.Column="3" Grid.Row="2"   ></StackPanel>


                        </Grid>




                    </StackPanel>

                    <StackPanel Grid.Row="1" Grid.Column="1" Grid.ColumnSpan="3"  Margin="20,0,0,0" >
                        <Grid>
                            <Grid.Resources>

                                <local:AlarmSampleData x:Key="DataSource"/>
                            </Grid.Resources>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="*" />
                                <ColumnDefinition Width="10" />
                            </Grid.ColumnDefinitions>
                            <Grid.RowDefinitions>
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                                <RowDefinition Height="*" />
                            </Grid.RowDefinitions>
                            <StackPanel Grid.ColumnSpan="2"   >
                                <TextBlock TextWrapping="Wrap"  Margin="2"  Text=" Use This form To add and remove Serial Number for gas detection to the database"/>
                            </StackPanel>
                            <StackPanel Grid.Row="1" Grid.ColumnSpan="2" Margin="10"  >
                                <TextBlock TextWrapping="Wrap" Grid.Row="3"
          Grid.ColumnSpan="2"   Text="Once your are done click the save button and assign gas detection to room of choice"/>
                            </StackPanel>

                            <StackPanel Grid.Row="2" Grid.Column="2"  >
                            </StackPanel>
                            <StackPanel Grid.Column="0" Grid.Row="2" Grid.ColumnSpan="2" >

                            </StackPanel>
                            <StackPanel Grid.Column="3" Grid.Row="2"   ></StackPanel>

                            <StackPanel Grid.Row="4" Grid.ColumnSpan="2" >


                                <telerik:RadGridView x:Name="radGridView"  ShowGroupPanel="False" ItemsSource="{Binding Source={StaticResource DataSource}, Path=Alarm}"
                                AutoGenerateColumns="False" Width="auto">
                                    <telerik:RadGridView.Columns>
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding id}" Header="ID" />
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding outside}" Header="OutSide Alarm IP" />
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding inside}" Header="Inside Alarm IP" />
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding setup}" Header="Alarm Setup Name" />
                                    </telerik:RadGridView.Columns>
                                    <telerik:RadGridView.Items>

                                    </telerik:RadGridView.Items>

                                </telerik:RadGridView>

                            </StackPanel>
                            <StackPanel Grid.Row="4" Grid.Column="2" Grid.ColumnSpan="2" >


                                <telerik:RadGridView x:Name="radGridViews" Margin="30 , 0 ,0,0"  ShowGroupPanel="False" ItemsSource="{Binding Source={StaticResource DataSource}, Path=Alarm}"
                                AutoGenerateColumns="False" Width="auto">
                                    <telerik:RadGridView.Columns>
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding id}" Header="ID" />
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding outside}" Header="User Name" />
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding inside}" Header="Full Name" />
                                        <telerik:GridViewDataColumn Width="*" DataMemberBinding="{Binding setup}" Header="Role" />
                                    </telerik:RadGridView.Columns>


                                </telerik:RadGridView>

                            </StackPanel>
                            <StackPanel Grid.Row="5" Grid.ColumnSpan="2" >

                                <Grid>
                                    <Grid.ColumnDefinitions>
                                        <ColumnDefinition Width="*" />
                                        <ColumnDefinition Width="*" />
                                    </Grid.ColumnDefinitions>
                                    <Grid.RowDefinitions>
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                    </Grid.RowDefinitions>
                                    <StackPanel Grid.Row="0" Height="20">
                                    </StackPanel>
                                    <StackPanel Grid.Row="1" >

                                        <telerik:Label Content="Outside Alarm IP" FontWeight="Bold" HorizontalAlignment="Left"  />


                                    </StackPanel>
                                    <StackPanel   Grid.Row="1"  Grid.Column="2">

                                        <telerik:Label Content="Inside Alarm IP" FontWeight="Bold" HorizontalAlignment="Left"  />



                                    </StackPanel>

                                    <StackPanel Grid.Row="2" >

                                        <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="3,10,20,0"
          Grid.Column="1"  x:Name="OIP"  WatermarkContent="Outside Alarm IP" />

                                    </StackPanel>
                                    <StackPanel   Grid.Row="2"  Grid.Column="2" >
                                        <telerik:RadWatermarkTextBox Grid.Row="1"  Margin="3,10,0,0"
          Grid.Column="1"  x:Name="InIP"  WatermarkContent="Inside Alarm IP" />

                                    </StackPanel>

                                    <StackPanel Grid.Row="3" Grid.ColumnSpan="2" >

                                        <telerik:Label Content="Alarm Setup Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />


                                    </StackPanel>

                                    <StackPanel Grid.Row="4" Grid.ColumnSpan="2" >


                                        <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="3,10,0,0"
          Grid.Column="1"  x:Name="alarmSetup"  WatermarkContent="Outside Alarm IP" />

                                    </StackPanel>

                                    <StackPanel Grid.Row="5" >

                                        <telerik:RadButton x:Name="btnSave"   FontWeight="Medium" Content="Save" VerticalAlignment="Stretch"    HorizontalAlignment="Stretch" Margin="0,30,0,8"  />

                                    </StackPanel>
                                    <StackPanel   Grid.Row="5"  Grid.Column="2" >
                                        <telerik:RadButton x:Name="btnDelete"   FontWeight="Medium"  Content="Delete Alarm Setup" VerticalAlignment="Stretch"  Height="Auto"  HorizontalAlignment="Stretch" Margin="8,30,0,0" />

                                    </StackPanel>

                                    <StackPanel Grid.Row="6" >

                                        <telerik:RadButton x:Name="btnSaveNewSetup"   FontWeight="Medium" Content="Save as new Alarm Setup" VerticalAlignment="Stretch"    HorizontalAlignment="Stretch" Margin="0,0,0,4"  />

                                    </StackPanel>

                                </Grid>

                            </StackPanel>

                            <StackPanel Grid.Row="5" Grid.Column="2" Grid.ColumnSpan="2" Margin="30 , 0 ,0,0" >

                                <Grid>
                                    <Grid.ColumnDefinitions>
                                        <ColumnDefinition Width="*" />
                                        <ColumnDefinition Width="*" />
                                    </Grid.ColumnDefinitions>
                                    <Grid.RowDefinitions>
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                        <RowDefinition Height="*" />
                                    </Grid.RowDefinitions>
                                    <StackPanel Grid.Row="0" Height="20">
                                    </StackPanel>
                                    <StackPanel Grid.Row="1" >

                                        <telerik:Label Content="User Name" FontWeight="Bold" HorizontalAlignment="Left"  />


                                    </StackPanel>
                                    <StackPanel   Grid.Row="1"  Grid.Column="2">

                                        <telerik:Label Content="Password" FontWeight="Bold" HorizontalAlignment="Left"  />



                                    </StackPanel>

                                    <StackPanel Grid.Row="2" >

                                        <telerik:RadWatermarkTextBox Grid.Row="1"   Margin="3,10,20,0"
          Grid.Column="1"  x:Name="userName"  WatermarkContent="User Name" />

                                    </StackPanel>

                                    <StackPanel   Grid.Row="2"  Grid.Column="2" >
                                        <telerik:RadWatermarkTextBox Grid.Row="1"  Margin="3,10,0,0"
          Grid.Column="1"  x:Name="Password"  WatermarkContent="Password" />

                                    </StackPanel>


                                    <StackPanel Grid.Row="3" Grid.ColumnSpan="2" >

                                        <telerik:Label Content="Full Name" Margin="3,10,0,0" FontWeight="Bold" HorizontalAlignment="Left"  />


                                    </StackPanel>
                                    <StackPanel   Grid.Row="3"  Grid.Column="2" Margin="3,10,0,0">

                                        <telerik:Label Content="Role" FontWeight="Bold" HorizontalAlignment="Left"  />



                                    </StackPanel>
                                    <StackPanel Grid.Row="4" Grid.ColumnSpan="1" >


                                        <telerik:RadWatermarkTextBox Grid.Row="1"   x:Name="fullName"  WatermarkContent="Full Name" Margin="3,10,20,0"/>

                                    </StackPanel>

                                    <StackPanel Grid.Row="4" Grid.Column="2" Grid.ColumnSpan="2" >


                                        <telerik:RadWatermarkTextBox Grid.Row="1"   x:Name="Role"  WatermarkContent="Role" Margin="3,10,0,0"/>

                                    </StackPanel>




                                    <StackPanel Grid.Row="5" >

                                        <telerik:RadButton x:Name="btnSave1" Margin="3,30,20,0"  FontWeight="Medium" Content="Save" VerticalAlignment="Stretch"    HorizontalAlignment="Stretch"   />

                                    </StackPanel>
                                    <StackPanel   Grid.Row="5"  Grid.Column="2" >
                                        <telerik:RadButton x:Name="btnDelete1" Margin="3,30,0,0"  FontWeight="Medium"  Content="Delete Alarm Setup" VerticalAlignment="Stretch"  Height="Auto"  HorizontalAlignment="Stretch"   />

                                    </StackPanel>

                                    <StackPanel Grid.Row="6" >

                                        <telerik:RadButton x:Name="btnSaveNewSetup1"   FontWeight="Medium" Content="Save as new Alarm Setup" VerticalAlignment="Stretch"    HorizontalAlignment="Stretch" Margin="3,20,20,0"  />

                                    </StackPanel>

                                </Grid>

                            </StackPanel>
                        </Grid>




                    </StackPanel>














                </Grid>


            </telerik:RadTabItem>
            <telerik:RadTabItem x:Name="SetupRooms" Header="Config">

            </telerik:RadTabItem>

        </telerik:RadTabControl>

    </Grid>
</telerik:RadRibbonWindow>
 
Sound like a question for Telerik support since this is their product.

The only thing that comes to mind is that the two of you may have different versions of the Telerik controls installed on your machines.
 
Back
Top Bottom