Click here to Skip to main content
15,886,724 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Quick Binding Question Pin
Kevin Marois28-Mar-12 8:43
professionalKevin Marois28-Mar-12 8:43 
GeneralRe: Quick Binding Question Pin
SledgeHammer0128-Mar-12 9:46
SledgeHammer0128-Mar-12 9:46 
GeneralRe: Quick Binding Question Pin
Kevin Marois28-Mar-12 11:00
professionalKevin Marois28-Mar-12 11:00 
GeneralRe: Quick Binding Question Pin
SledgeHammer0128-Mar-12 11:08
SledgeHammer0128-Mar-12 11:08 
GeneralRe: Quick Binding Question Pin
Kevin Marois28-Mar-12 11:17
professionalKevin Marois28-Mar-12 11:17 
GeneralRe: Quick Binding Question Pin
SledgeHammer0128-Mar-12 12:15
SledgeHammer0128-Mar-12 12:15 
QuestionWPF Splitter Not Working Pin
Kevin Marois28-Mar-12 6:59
professionalKevin Marois28-Mar-12 6:59 
AnswerRe: WPF Splitter Not Working Pin
Gerry Schmitz28-Mar-12 14:12
mveGerry Schmitz28-Mar-12 14:12 
Remove the Width from the splitter; change the ColumnDefinitions as per below ...

C#
<Grid>
      <Grid.RowDefinitions>
         <RowDefinition Height="Auto"></RowDefinition>
         <RowDefinition Height="*"></RowDefinition>
         <RowDefinition Height="Auto"></RowDefinition>
      </Grid.RowDefinitions>
      <Grid.ColumnDefinitions>
         <ColumnDefinition Width="*"></ColumnDefinition>
         <ColumnDefinition Width="10"></ColumnDefinition>
         <ColumnDefinition Width="*"></ColumnDefinition>
      </Grid.ColumnDefinitions>
      <ListView Background="LightGreen"
                Grid.Row="1"
                Grid.Column="0" />
      <GridSplitter Grid.Row="1"
                    Grid.Column="1"
                    VerticalAlignment="Stretch"
                    HorizontalAlignment="Stretch"
                    Background="SlateBlue" />
      <Border Grid.Row="1"
              Grid.Column="2"
              Background="LightBlue" />
   </Grid>

Questionbinding text and 2 radio buttons Pin
Sutton Mehaffey28-Mar-12 5:37
Sutton Mehaffey28-Mar-12 5:37 
Questionwpf 3d with lots of models Pin
soheilvb28-Mar-12 5:26
soheilvb28-Mar-12 5:26 
AnswerRe: wpf 3d with lots of models Pin
Pete O'Hanlon28-Mar-12 5:56
mvePete O'Hanlon28-Mar-12 5:56 
QuestionHow to localize a DatePicker? Pin
Bernhard Hiller28-Mar-12 0:46
Bernhard Hiller28-Mar-12 0:46 
AnswerRe: How to localize a DatePicker? Pin
Bernhard Hiller28-Mar-12 19:57
Bernhard Hiller28-Mar-12 19:57 
GeneralRe: How to localize a DatePicker? Pin
Mycroft Holmes28-Mar-12 21:54
professionalMycroft Holmes28-Mar-12 21:54 
QuestionAnother Expander Style Question Pin
Kevin Marois27-Mar-12 8:14
professionalKevin Marois27-Mar-12 8:14 
AnswerRe: Another Expander Style Question Pin
Mycroft Holmes27-Mar-12 12:57
professionalMycroft Holmes27-Mar-12 12:57 
GeneralRe: Another Expander Style Question Pin
SledgeHammer0127-Mar-12 13:21
SledgeHammer0127-Mar-12 13:21 
GeneralRe: Another Expander Style Question Pin
Mycroft Holmes27-Mar-12 14:12
professionalMycroft Holmes27-Mar-12 14:12 
AnswerRe: Another Expander Style Question Pin
SledgeHammer0127-Mar-12 13:20
SledgeHammer0127-Mar-12 13:20 
GeneralRe: Another Expander Style Question Pin
Kevin Marois27-Mar-12 13:24
professionalKevin Marois27-Mar-12 13:24 
QuestionUnable to catch Key.Down in a combox with applied style Pin
George Nistor26-Mar-12 23:31
George Nistor26-Mar-12 23:31 
QuestionWPF Styling/Templating Problem Pin
Kevin Marois26-Mar-12 14:14
professionalKevin Marois26-Mar-12 14:14 
AnswerRe: WPF Styling/Templating Problem Pin
Abhinav S26-Mar-12 15:21
Abhinav S26-Mar-12 15:21 
GeneralRe: WPF Styling/Templating Problem Pin
Kevin Marois27-Mar-12 6:17
professionalKevin Marois27-Mar-12 6:17 
Questionhow to design Bubble chart with Datapoints like Piechart Pin
Tryxo26-Mar-12 12:11
Tryxo26-Mar-12 12:11 

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.