Clear All Columns : Grid « Windows Presentation Foundation « VB.Net






Clear All Columns

Clear All Columns
      
<Window  
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="columndefinitions_grid.Window1"
    Title="ColumnDefinitions Sample">
    <Border BorderBrush="Black" Background="White" BorderThickness="2">
  <DockPanel Margin="10,0,0,0">
    <TextBlock FontSize="20" FontWeight="Bold" DockPanel.Dock="Top">Grid Column and Row Collections</TextBlock>
        <Grid DockPanel.Dock="Top" HorizontalAlignment="Left" Name="grid1" ShowGridLines="true" Width="625" Height="400">
          <Grid.ColumnDefinitions>
            <ColumnDefinition/>
            <ColumnDefinition/>
            <ColumnDefinition/>
          </Grid.ColumnDefinitions>
          <Grid.RowDefinitions>
          <RowDefinition/>
            <RowDefinition/>
            <RowDefinition/>
          </Grid.RowDefinitions>
        </Grid>

        <StackPanel HorizontalAlignment="Left" Orientation="Horizontal" Width="625" DockPanel.Dock="Top">
            <Button Width="125" Click="clearCol">Clear All Columns</Button>
        </StackPanel>    

  </DockPanel>
  </Border>  
</Window>

//File:Window.xaml.vb

Imports System
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Documents

Namespace columndefinitions_grid
  Public Partial Class Window1
    Inherits Window
    Private rowDef1 As RowDefinition
    Private colDef1 As ColumnDefinition

    Private Sub clearCol(sender As Object, e As RoutedEventArgs)
      grid1.ColumnDefinitions.Clear()
    End Sub
  End Class
End Namespace

   
    
    
    
    
    
  








Related examples in the same category

1.The first row of a gridThe first row of a grid
2.Positioning elements using a Grid
3.Layout within a button using GridLayout within a button using Grid
4.Label in a GridLabel in a Grid
5.Display Content in Resizable Split PanelDisplay Content in Resizable Split Panel
6.Place more than two object to one cellPlace more than two object to one cell
7.Add StackPanel to Row 0Add StackPanel to Row 0
8.Using the attached properties of Grid
9.Two columns and three rows columnsTwo columns and three rows columns
10.Fixed column widthFixed column width
11.Grid with row and column definition and place buttons to grid cellsGrid with row and column definition and place buttons to grid cells
12.Shared Size GroupsShared Size Groups
13.DoubleSplit WindowDoubleSplit Window
14.Grid PreviewMouseDown action and MouseDown actionGrid PreviewMouseDown action and MouseDown action
15.Grid MouseMoveGrid MouseMove
16.Grid MouseLeftButtonDownGrid MouseLeftButtonDown
17.Grid MouseLeftButtonUpGrid MouseLeftButtonUp
18.Use the Grid to create a dialog box that uses the WPF layout API
19.Is Grid ReadOnlyIs Grid ReadOnly
20.Dynamically add Button to a Grid and add Action listenerDynamically add Button to a Grid and add Action listener
21.Setting Grid row heights in codeSetting Grid row heights in code
22.Layout Controls with Grid in codeLayout Controls with Grid in code
23.Show Grid lines in codeShow Grid lines in code
24.Grid mouse down eventGrid mouse down event
25.Grid Preview mouse down eventGrid Preview mouse down event
26.Put Button onto a GridPut Button onto a Grid
27.Use the IsSharedSizeScope attached property of the Grid elementUse the IsSharedSizeScope attached property of the Grid element
28.Change the margins of an element that is within a Grid by XAML and programmatic codeChange the margins of an element that is within a Grid by XAML and programmatic code
29.Programmatically use the positioning methods of GridProgrammatically use the positioning methods of Grid
30.Add a ColumnDefinition to GridAdd a ColumnDefinition to Grid
31.Add a RowDefinition to GridAdd a RowDefinition to Grid
32.Clear All RowsClear All Rows
33.Remove One ColumnRemove One Column
34.Remove One RowRemove One Row
35.The current number of ColumnsThe current number of Columns
36.The current number of RowsThe current number of Rows
37.Remove 5 Columns with ColumnDefinitions.RemoveRangeRemove 5 Columns with ColumnDefinitions.RemoveRange
38.Remove 5 Row with RowDefinitions.RemoveRange
39.Contains RowContains Row
40.Contains Column?Contains Column?
41.Insert RowInsert Row
42.Insert ColumnInsert Column
43.Set control to specific row and column in codeSet control to specific row and column in code
44.The default GroupStyle indents the items in a groupThe default GroupStyle indents the items in a group
45.A resizable layoutbased on GridA resizable layoutbased on Grid