File: MaterialDlg.xaml

package info (click to toggle)
opencascade 7.8.1%2Bdfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 293,924 kB
  • sloc: cpp: 1,249,635; tcl: 15,974; cs: 5,173; java: 1,554; sh: 1,354; ansic: 821; xml: 737; makefile: 30; javascript: 22
file content (20 lines) | stat: -rw-r--r-- 1,159 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Window
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
	x:Class="IE_WPF_WinForms.MaterialDlg"
	x:Name="Window"
	Title="Material"
	Width="133" Height="181" mc:Ignorable="d">

	<StackPanel Orientation="Vertical" d:LayoutOverrides="Height" HorizontalAlignment="Center" VerticalAlignment="Center">
		<RadioButton Name="PlasterBtn" Content="Plaster" Checked="PlasterBtn_Checked"/>
		<RadioButton Name="BrassBtn" Content="Brass" Checked="BrassBtn_Checked"/>
		<RadioButton Name="BronzeBtn" Content="Bronze" Checked="BronzeBtn_Checked"/>
		<RadioButton Name="CopperBtn" Content="Copper" Checked="CopperBtn_Checked"/>
		<RadioButton Name="GoldBtn" Content="Gold" Checked="GoldBtn_Checked"/>
		<RadioButton Name="PewterBtn" Content="Pewter" Checked="PewterBtn_Checked"/>
		<RadioButton Name="PlasticBtn" Content="Plastic" Checked="PlasticBtn_Checked"/>
		<RadioButton Name="SilverBtn" Content="Silver" Checked="SilverBtn_Checked"/>
	</StackPanel>
</Window>