Click here to Skip to main content
15,790,435 members
Home / Discussions / WPF
   

WPF

 
GeneralRe: Conditional DataBinding to UI Elements Pin
SledgeHammer015-Feb-12 15:14
SledgeHammer015-Feb-12 15:14 
GeneralRe: Conditional DataBinding to UI Elements Pin
Mycroft Holmes5-Feb-12 16:15
professionalMycroft Holmes5-Feb-12 16:15 
AnswerRe: Conditional DataBinding to UI Elements Pin
Mycroft Holmes5-Feb-12 16:16
professionalMycroft Holmes5-Feb-12 16:16 
GeneralRe: Conditional DataBinding to UI Elements Pin
Andy_L_J5-Feb-12 16:43
Andy_L_J5-Feb-12 16:43 
QuestionOwn TreeViewItem with image and text Pin
Mc_Topaz2-Feb-12 23:20
Mc_Topaz2-Feb-12 23:20 
AnswerRe: Own TreeViewItem with image and text Pin
Mc_Topaz3-Feb-12 1:52
Mc_Topaz3-Feb-12 1:52 
GeneralGridSplitter Conundrum Pin
Gil Yoder1-Feb-12 16:31
Gil Yoder1-Feb-12 16:31 
QuestionRe: GridSplitter Conundrum Pin
Gil Yoder2-Feb-12 10:44
Gil Yoder2-Feb-12 10:44 
Well here is a bit more to my conundrum. I want to create divided panel with two areas for controls. I started with a Grid with three columns. I put a GridSplitter in the second column, and set the column's width to "Auto" so its Width is just the Width of the splitter.

I want the splitter to be able to resize the left and right columns, so I set the splitter's ResizeBehavior to PreviousAndNext. Also I want to be able to completely minimize the left column, but I want the right column always to be at least 200 pixels. For the Width property of the left column I set it to 130, and the Width property of the last column to * and its MinWidth property to 200.

When I run the window I can move the GridSplitter left, and it will move to the left side of the DockWindow, and stop there. When I move it to the right though, it will move off the screen pushing the whole column out of view.

Here is the XAML for it:

<Grid>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="130" />
        <ColumnDefinition Width="Auto" />
        <ColumnDefinition Width="*" MinWidth="200" />
    </Grid.ColumnDefinitions>
    <GridSplitter Grid.Column="1" Width="3" ResizeBehavior="PreviousAndNext" />
</Grid>


What can I do to enable the features I want, and to prevent the right column from completely leaving the Window?
AnswerRe: GridSplitter Conundrum Pin
SledgeHammer012-Feb-12 12:40
SledgeHammer012-Feb-12 12:40 
GeneralRe: GridSplitter Conundrum Pin
Gil Yoder2-Feb-12 15:09
Gil Yoder2-Feb-12 15:09 
GeneralRe: GridSplitter Conundrum Pin
SledgeHammer012-Feb-12 15:37
SledgeHammer012-Feb-12 15:37 
GeneralRe: GridSplitter Conundrum Pin
Gil Yoder2-Feb-12 16:43
Gil Yoder2-Feb-12 16:43 
SuggestionRe: GridSplitter Conundrum Pin
Gil Yoder2-Feb-12 19:59
Gil Yoder2-Feb-12 19:59 
GeneralRe: GridSplitter Conundrum Pin
SledgeHammer013-Feb-12 8:17
SledgeHammer013-Feb-12 8:17 
Questionadding/removing ListView columns at runtime (revisited) Pin
Vincent Beek1-Feb-12 1:20
Vincent Beek1-Feb-12 1:20 
AnswerRe: adding/removing ListView columns at runtime (revisited) Pin
Abhinav S1-Feb-12 1:36
Abhinav S1-Feb-12 1:36 
GeneralRe: adding/removing ListView columns at runtime (revisited) Pin
Mycroft Holmes1-Feb-12 12:53
professionalMycroft Holmes1-Feb-12 12:53 
QuestionBinding list of items to IntemsControl in WPF Pin
rams231-Jan-12 0:14
rams231-Jan-12 0:14 
AnswerRe: Binding list of items to IntemsControl in WPF Pin
Wayne Gaylard31-Jan-12 1:10
professionalWayne Gaylard31-Jan-12 1:10 
GeneralRe: Binding list of items to IntemsControl in WPF Pin
rams231-Jan-12 1:36
rams231-Jan-12 1:36 
GeneralRe: Binding list of items to IntemsControl in WPF Pin
Wayne Gaylard31-Jan-12 1:39
professionalWayne Gaylard31-Jan-12 1:39 
GeneralRe: Binding list of items to IntemsControl in WPF Pin
Abhinav S1-Feb-12 17:26
Abhinav S1-Feb-12 17:26 
GeneralRe: Binding list of items to IntemsControl in WPF Pin
Wayne Gaylard1-Feb-12 20:06
professionalWayne Gaylard1-Feb-12 20:06 
QuestionFocusing on elements in MVVM Pin
mi_n30-Jan-12 23:42
mi_n30-Jan-12 23:42 
AnswerRe: Focusing on elements in MVVM Pin
Pete O'Hanlon31-Jan-12 0:03
subeditorPete O'Hanlon31-Jan-12 0:03 

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.