Set Row and Column Index when Adding Buttons to Grid : Grid « Containers « Silverlight






Set Row and Column Index when Adding Buttons to Grid

    
<UserControl x:Class='SilverlightApplication3.MainPage'
    xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' 
    xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
    xmlns:d='http://schemas.microsoft.com/expression/blend/2008' 
    xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006' 
    mc:Ignorable='d' 
    d:DesignWidth='640' 
    d:DesignHeight='480'>

    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="33*" />
            <RowDefinition Height="33*" />
            <RowDefinition Height="33*" />
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="33*" />
            <ColumnDefinition Width="33*" />
            <ColumnDefinition Width="33*" />
        </Grid.ColumnDefinitions>
        <Button Grid.Row="0" Grid.Column="0" Margin="5">0,0</Button>
        <Button Grid.Row="0" Grid.Column="1" Margin="5">0,1</Button>
        <Button Grid.Row="0" Grid.Column="2" Margin="5">0,2</Button>
        <Button Grid.Row="1" Grid.Column="0" Margin="5">1,0</Button>
        <Button Grid.Row="1" Grid.Column="1" Margin="5">1,1</Button>
        <Button Grid.Row="1" Grid.Column="2" Margin="5">1,2</Button>
        <Button Grid.Row="2" Grid.Column="0" Margin="5">2,0</Button>
        <Button Grid.Row="2" Grid.Column="1" Margin="5">2,1</Button>
        <Button Grid.Row="2" Grid.Column="2" Margin="5">2,2</Button>
    </Grid>
</UserControl>

   
    
    
    
  








Related examples in the same category

1.Positioning UI Elements with a GridPositioning UI Elements with a Grid
2.A Simple Grid ControlA Simple Grid Control
3.Span two rows and two columns with an Image control
4.Implementing a Grid to Set the Layout of Silverlight Controls
5.Grid exampleGrid example
6.ColumnSpan exampleColumnSpan example
7.Grid example 2* row and column definitionsGrid example 2* row and column definitions
8.Use Grid to layout a CalendarUse Grid to layout a Calendar
9.Set Grid Row and Column for a Button
10.Grid with Column Definition and Row definitionGrid with Column Definition and Row definition
11.Define rows / columns for GridDefine rows / columns for Grid
12.Using Grid.ColumnSpanUsing Grid.ColumnSpan
13.Set Grid Row Height and Column Width to AutoSet Grid Row Height and Column Width to Auto
14.Mixing row height stylesMixing row height styles
15.Show Grid LinesShow Grid Lines
16.Multiple Items in a Grid CellMultiple Items in a Grid Cell
17.Grid in ScrollViewerGrid in ScrollViewer
18.Margin vs Padding and Grid
19.ColumnDefinition.Width=Auto
20.Bind to Grid Width and Height
21.Put more than one Object to one Grid Cell
22.Set Column and Row index when adding Controls to a Grid
23.Empty RowDefinition and ColumnDefinition
24.Use the Grid element to create a standard user interface (UI) dialog box.
25.Place and size rectangles and ellipses in Grid cellsPlace and size rectangles and ellipses in Grid cells
26.Use Image as the Grid backgroundUse Image as the Grid background
27.Automatic Width and HeightAutomatic Width and Height
28.Layout Controls with Grid in codeLayout Controls with Grid in code
29.Set control to specific row and column in codeSet control to specific row and column in code
30.Show Grid lines in codeShow Grid lines in code
31.A basic Grid using star sizing.A basic Grid using star sizing.
32.A basic Grid using auto sizingA basic Grid using auto sizing
33.The basic syntax of a GridThe basic syntax of a Grid
34.Arranging content within a GridArranging content within a Grid
35.Proportional GridProportional Grid
36.Nested GridsNested Grids
37.Grid cell stretch modeGrid cell stretch mode
38.Programmatically adding a row and a column while setting the height and widthProgrammatically adding a row and a column while setting the height and width
39.Programmatically removing a row and a columnProgrammatically removing a row and a column
40.The basic syntax and usage of a GridSplitterThe basic syntax and usage of a GridSplitter
41.Star sizing GridStar sizing Grid
42.Grid mouse button up eventGrid mouse button up event