Click here to Skip to main content
15,893,486 members
Home / Discussions / WPF
   

WPF

 
QuestionWhat do i need to install silverlight and make it run in visual studio2008 Pin
Andile.M11-Aug-09 22:44
Andile.M11-Aug-09 22:44 
AnswerRe: What do i need to install silverlight and make it run in visual studio2008 Pin
Pete O'Hanlon12-Aug-09 0:02
mvePete O'Hanlon12-Aug-09 0:02 
AnswerRe: What do i need to install silverlight and make it run in visual studio2008 Pin
Michael Sync12-Aug-09 3:18
Michael Sync12-Aug-09 3:18 
QuestionHow to use same usercontrol multiple time in the silverlight Pin
Nekkantidivya11-Aug-09 20:40
Nekkantidivya11-Aug-09 20:40 
AnswerRe: How to use same usercontrol multiple time in the silverlight Pin
Pete O'Hanlon11-Aug-09 21:45
mvePete O'Hanlon11-Aug-09 21:45 
AnswerRe: How to use same usercontrol multiple time in the silverlight Pin
Jeremy Likness13-Aug-09 5:32
professionalJeremy Likness13-Aug-09 5:32 
QuestionPositioning controls on a WPF form Pin
Etienne_12311-Aug-09 10:27
Etienne_12311-Aug-09 10:27 
AnswerRe: Positioning controls on a WPF form Pin
Mark Salsbery11-Aug-09 10:59
Mark Salsbery11-Aug-09 10:59 
Etienne_123 wrote:
Some controls are within a Grid. I want these controls to stay centered within the grid when maximizing and resizing the window


What is the parent of the grid with the controls? The parent may
be affecting the layout.

Here's an example of a grid with controls that stays centered in a window:
<Grid HorizontalAlignment="Center" VerticalAlignment="Center" >
    <Grid.RowDefinitions>
        <RowDefinition Height="*" />
        <RowDefinition Height="*" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="*" />
        <ColumnDefinition Width="*" />
    </Grid.ColumnDefinitions>
    <Button Content="button1" Grid.Column="0" Grid.Row="0" />
    <Button Content="button2" Grid.Column="1" Grid.Row="1" />
</Grid>


Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralRe: Positioning controls on a WPF form Pin
Etienne_12311-Aug-09 21:30
Etienne_12311-Aug-09 21:30 
QuestionRe: Positioning controls on a WPF form Pin
Mark Salsbery12-Aug-09 6:41
Mark Salsbery12-Aug-09 6:41 
GeneralRe: Positioning controls on a WPF form Pin
Pierre Leclercq15-Aug-09 0:53
Pierre Leclercq15-Aug-09 0:53 
AnswerRe: Positioning controls on a WPF form Pin
#realJSOP12-Aug-09 2:14
mve#realJSOP12-Aug-09 2:14 
GeneralRe: Positioning controls on a WPF form Pin
Pierre Leclercq15-Aug-09 0:44
Pierre Leclercq15-Aug-09 0:44 
GeneralRe: Positioning controls on a WPF form [modified] Pin
Mark Salsbery15-Aug-09 5:58
Mark Salsbery15-Aug-09 5:58 
GeneralRe: Positioning controls on a WPF form Pin
Pierre Leclercq15-Aug-09 6:26
Pierre Leclercq15-Aug-09 6:26 
QuestionHow to add runtime events for dynamic textbox controls in wpf [modified] Pin
Veerendranadh11-Aug-09 0:15
Veerendranadh11-Aug-09 0:15 
AnswerRe: How to add runtime events for dynamic textbox controls in wpf Pin
Pete O'Hanlon11-Aug-09 3:00
mvePete O'Hanlon11-Aug-09 3:00 
QuestionHosting Silverlight Application on IIS Pin
sunil.n.cs10-Aug-09 20:42
sunil.n.cs10-Aug-09 20:42 
AnswerRe: Hosting Silverlight Application on IIS Pin
Mark Salsbery11-Aug-09 5:46
Mark Salsbery11-Aug-09 5:46 
GeneralRe: Hosting Silverlight Application on IIS Pin
sunil.n.cs11-Aug-09 23:05
sunil.n.cs11-Aug-09 23:05 
Question[Message Deleted] Pin
Veerendranadh10-Aug-09 18:43
Veerendranadh10-Aug-09 18:43 
AnswerRe: Problem when loading UIElementCollection using XamlReader Pin
Pete O'Hanlon10-Aug-09 22:04
mvePete O'Hanlon10-Aug-09 22:04 
GeneralRe: Problem when loading UIElementCollection using XamlReader Pin
Veerendranadh10-Aug-09 22:16
Veerendranadh10-Aug-09 22:16 
GeneralRe: Problem when loading UIElementCollection using XamlReader Pin
Pete O'Hanlon10-Aug-09 23:02
mvePete O'Hanlon10-Aug-09 23:02 
GeneralRe: Problem when loading UIElementCollection using XamlReader Pin
Pete O'Hanlon11-Aug-09 1:51
mvePete O'Hanlon11-Aug-09 1:51 

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.