0024699: Visualization - prototype interoperation of TKOpenGl viewer with Direct3D...
[occt.git] / samples / CSharp / WPF_D3D / MaterialDlg.xaml
CommitLineData
d1a2fee8 1<Window
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
15534713 5 x:Class="IE_WPF_D3D.MaterialDlg"
d1a2fee8 6 x:Name="Window"
7 Title="Material"
8 Width="133" Height="181" mc:Ignorable="d">
9
10 <StackPanel Orientation="Vertical" d:LayoutOverrides="Height" HorizontalAlignment="Center" VerticalAlignment="Center">
11 <RadioButton Name="PlasterBtn" Content="Plaster" Checked="PlasterBtn_Checked"/>
12 <RadioButton Name="BrassBtn" Content="Brass" Checked="BrassBtn_Checked"/>
13 <RadioButton Name="BronzeBtn" Content="Bronze" Checked="BronzeBtn_Checked"/>
14 <RadioButton Name="CopperBtn" Content="Copper" Checked="CopperBtn_Checked"/>
15 <RadioButton Name="GoldBtn" Content="Gold" Checked="GoldBtn_Checked"/>
16 <RadioButton Name="PewterBtn" Content="Pewter" Checked="PewterBtn_Checked"/>
17 <RadioButton Name="PlasticBtn" Content="Plastic" Checked="PlasticBtn_Checked"/>
18 <RadioButton Name="SilverBtn" Content="Silver" Checked="SilverBtn_Checked"/>
19 </StackPanel>
20</Window>