CheckRadio Group : RadioButton « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » RadioButtonScreenshots 
CheckRadio Group
CheckRadio Group
     
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Menu Item Command Task">
  <StackPanel Orientation="Horizontal" Width = "400" Height = "100">
  <Expander Header = "Select Your Music Media" BorderBrush ="Black">
    <StackPanel>
      <RadioButton GroupName = "Music" >A</RadioButton>
      <RadioButton GroupName = "Music" >B</RadioButton>
      <RadioButton GroupName = "Music" >C</RadioButton>
    </StackPanel>
  </Expander>

  <Expander BorderBrush ="Black">
    <Expander.Header>
      <Label Background = "Blue" Foreground="White" FontSize="15" Content="Select your color choice"/>        
    </Expander.Header>
    <StackPanel>
      <RadioButton>Red</RadioButton>
      <RadioButton>Green</RadioButton>
      <RadioButton>Blue</RadioButton>    
    </StackPanel>
  </Expander >
</StackPanel>
</Window>

   
    
    
    
    
  
Related examples in the same category
1.Grouping radio buttons by parentGrouping radio buttons by parent
2.Grouping radio buttons by nameGrouping radio buttons by name
3.Image RadioButtonImage RadioButton
4.RadioButton click eventRadioButton click event
5.Use RadioButton to control TextBox alignmentUse RadioButton to control TextBox alignment
6.RadioButton checked event handlerRadioButton checked event handler
w__w__w__._ja___v_a_2___s.___c_o__m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.