Click here to Skip to main content
15,881,089 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: Bin\Debug\AppManifest.xaml Error Pin
Christian Amado29-Aug-12 11:33
professionalChristian Amado29-Aug-12 11:33 
QuestionSMF player in silverlight Pin
arti s.v27-Aug-12 23:16
arti s.v27-Aug-12 23:16 
AnswerRe: SMF player in silverlight Pin
Pete O'Hanlon27-Aug-12 23:25
mvePete O'Hanlon27-Aug-12 23:25 
QuestionWPF Bind Radio Buttons To Tab Control Pin
Kevin Marois26-Aug-12 11:24
professionalKevin Marois26-Aug-12 11:24 
AnswerRe: WPF Bind Radio Buttons To Tab Control Pin
YBirkhoff26-Aug-12 12:28
YBirkhoff26-Aug-12 12:28 
AnswerRe: WPF Bind Radio Buttons To Tab Control Pin
Mycroft Holmes26-Aug-12 13:04
professionalMycroft Holmes26-Aug-12 13:04 
AnswerRe: WPF Bind Radio Buttons To Tab Control Pin
SledgeHammer0127-Aug-12 9:59
SledgeHammer0127-Aug-12 9:59 
AnswerRe: WPF Bind Radio Buttons To Tab Control Pin
Martijn Kok31-Aug-12 4:27
Martijn Kok31-Aug-12 4:27 
In XAML you could do this by binding the tabItems IsSelected to the IsChecked from the radiobutton. See the example below (for the sake of this example I removed some attributes like Height and Margin)

XML
<Grid>
    <TabControl Name="tabControl1" >
        <TabItem Header="tabItem1" Name="tabItem1" IsSelected="{Binding ElementName=radioButton1, Path=IsChecked, Mode=TwoWay}">
            <Grid />
        </TabItem>
        <TabItem Header="tabItem2" Name="tabItem2" IsSelected="{Binding ElementName=radioButton2, Path=IsChecked, Mode=TwoWay}">
            <Grid />
        </TabItem>
    </TabControl>
    <RadioButton Content="1" Name="radioButton1" IsChecked="True"/>
    <RadioButton Content="2"  Name="radioButton2" />
</Grid>

AnswerRe: WPF Bind Radio Buttons To Tab Control Pin
Clifford Nelson6-Sep-12 13:44
Clifford Nelson6-Sep-12 13:44 
QuestionWPF Extended Toolkit PropertyGrid - Turn off sorting? Pin
#realJSOP26-Aug-12 2:54
mve#realJSOP26-Aug-12 2:54 
AnswerRe: WPF Extended Toolkit PropertyGrid - Turn off sorting? Pin
Abhinav S27-Aug-12 1:56
Abhinav S27-Aug-12 1:56 
GeneralRe: WPF Extended Toolkit PropertyGrid - Turn off sorting? Pin
#realJSOP27-Aug-12 4:18
mve#realJSOP27-Aug-12 4:18 
QuestionDoes WPF propertyGrid support collection of items other than Enum? Pin
sree140824-Aug-12 2:06
sree140824-Aug-12 2:06 
AnswerRe: Does WPF propertyGrid support collection of items other than Enum? Pin
Matt T Heffron24-Aug-12 8:10
professionalMatt T Heffron24-Aug-12 8:10 
QuestionInvalidateMeasure doesn't trigger MeasureOverride call? Pin
SledgeHammer0122-Aug-12 13:09
SledgeHammer0122-Aug-12 13:09 
AnswerRe: InvalidateMeasure doesn't trigger MeasureOverride call? Pin
Pete O'Hanlon22-Aug-12 13:21
mvePete O'Hanlon22-Aug-12 13:21 
GeneralRe: InvalidateMeasure doesn't trigger MeasureOverride call? Pin
SledgeHammer0122-Aug-12 13:40
SledgeHammer0122-Aug-12 13:40 
GeneralRe: InvalidateMeasure doesn't trigger MeasureOverride call? Pin
Pete O'Hanlon22-Aug-12 23:53
mvePete O'Hanlon22-Aug-12 23:53 
GeneralRe: InvalidateMeasure doesn't trigger MeasureOverride call? Pin
SledgeHammer0123-Aug-12 5:08
SledgeHammer0123-Aug-12 5:08 
GeneralRe: InvalidateMeasure doesn't trigger MeasureOverride call? Pin
Pete O'Hanlon23-Aug-12 5:15
mvePete O'Hanlon23-Aug-12 5:15 
GeneralRe: InvalidateMeasure doesn't trigger MeasureOverride call? Pin
SledgeHammer0123-Aug-12 8:34
SledgeHammer0123-Aug-12 8:34 
GeneralRe: InvalidateMeasure doesn't trigger MeasureOverride call? Pin
SledgeHammer0123-Aug-12 13:03
SledgeHammer0123-Aug-12 13:03 
QuestionWPF Problem With WrapPanel In ListBox.ItemsPanel [UPDATED] Pin
Kevin Marois20-Aug-12 14:33
professionalKevin Marois20-Aug-12 14:33 
QuestionSwitch WPF UI at runtime Pin
Ed Hill _5_17-Aug-12 0:43
Ed Hill _5_17-Aug-12 0:43 
AnswerRe: Switch WPF UI at runtime Pin
Kenneth Haugland18-Aug-12 12:54
mvaKenneth Haugland18-Aug-12 12:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.