Click here to Skip to main content
15,888,190 members
Home / Discussions / WPF
   

WPF

 
QuestionWPF UI Loading Question Pin
Kevin Marois11-Sep-15 5:50
professionalKevin Marois11-Sep-15 5:50 
AnswerRe: WPF UI Loading Question Pin
Kenneth Haugland12-Sep-15 1:57
mvaKenneth Haugland12-Sep-15 1:57 
AnswerRe: WPF UI Loading Question Pin
Pete O'Hanlon12-Sep-15 11:36
mvePete O'Hanlon12-Sep-15 11:36 
GeneralRe: WPF UI Loading Question Pin
Kevin Marois14-Sep-15 15:27
professionalKevin Marois14-Sep-15 15:27 
GeneralRe: WPF UI Loading Question Pin
Dave Kreskowiak15-Sep-15 3:25
mveDave Kreskowiak15-Sep-15 3:25 
QuestionVerticalAlignment.Bottom Problem Pin
Kevin Marois11-Sep-15 5:36
professionalKevin Marois11-Sep-15 5:36 
AnswerRe: VerticalAlignment.Bottom Problem Pin
Kenneth Haugland20-Sep-15 22:07
mvaKenneth Haugland20-Sep-15 22:07 
SuggestionRe: VerticalAlignment.Bottom Problem Pin
J. Calhoun24-Sep-15 9:22
J. Calhoun24-Sep-15 9:22 
If you are trying to have a control, that is always aligned to the bottom of the window, yet when the height property changes, the height goes up instead of down I suggest you do something like this:

C#
<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="*"/>
        <RowDefinition Height="*"/>
        <RowDefinition Height="*"/>
    </Grid.RowDefinitions>


Then on the bottom grid:
C#
<Grid Grid.Row="2" x:Name="MyGrid" VerticalAlignment="Stretch" HorizontalAlignment="Stretch/>


On Runtime if you would like to change the height of the control, then all you would need to do is change the height of the Grid. By doing this you keep your control inside the bounds of the grid, yet if the grid height changes, so will the control since the property is set to stretch.
QuestionWPF How To Freeze The UI Pin
Kevin Marois10-Sep-15 5:57
professionalKevin Marois10-Sep-15 5:57 
QuestionSearchTextBox by sean a. hanley Pin
Saurabh18cs9-Sep-15 16:22
Saurabh18cs9-Sep-15 16:22 
SuggestionRe: SearchTextBox by sean a. hanley Pin
Richard MacCutchan9-Sep-15 22:16
mveRichard MacCutchan9-Sep-15 22:16 
AnswerRe: SearchTextBox by sean a. hanley Pin
Pete O'Hanlon9-Sep-15 23:02
mvePete O'Hanlon9-Sep-15 23:02 
QuestionExtract audio from a video and process it Pin
Member 119602474-Sep-15 7:41
Member 119602474-Sep-15 7:41 
AnswerRe: Extract audio from a video and process it Pin
Richard MacCutchan4-Sep-15 21:37
mveRichard MacCutchan4-Sep-15 21:37 
GeneralRe: Extract audio from a video and process it Pin
Member 119602478-Sep-15 6:05
Member 119602478-Sep-15 6:05 
GeneralRe: Extract audio from a video and process it Pin
Richard MacCutchan8-Sep-15 6:08
mveRichard MacCutchan8-Sep-15 6:08 
GeneralRe: Extract audio from a video and process it Pin
Member 119602478-Sep-15 6:13
Member 119602478-Sep-15 6:13 
AnswerRe: Extract audio from a video and process it Pin
Eddy Vluggen8-Sep-15 7:27
professionalEddy Vluggen8-Sep-15 7:27 
AnswerRe: Extract audio from a video and process it Pin
Pete O'Hanlon9-Sep-15 0:07
mvePete O'Hanlon9-Sep-15 0:07 
QuestionMapping In WPF Pin
Kevin Marois27-Aug-15 7:23
professionalKevin Marois27-Aug-15 7:23 
AnswerRe: Mapping In WPF Pin
Pete O'Hanlon2-Sep-15 2:12
mvePete O'Hanlon2-Sep-15 2:12 
GeneralRe: Mapping In WPF Pin
Kevin Marois2-Sep-15 4:08
professionalKevin Marois2-Sep-15 4:08 
Questionscroll based animation in wpf Pin
realhabs18-Aug-15 22:03
realhabs18-Aug-15 22:03 
AnswerRe: scroll based animation in wpf Pin
Pete O'Hanlon18-Aug-15 22:14
mvePete O'Hanlon18-Aug-15 22:14 
GeneralRe: scroll based animation in wpf Pin
realhabs21-Aug-15 2:11
realhabs21-Aug-15 2: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.