Remove One Row

image_pdfimage_print




Grid Column and Row Collections















//File:Window.xaml.cs

using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;

namespace WpfApplication1
{
public partial class Window1 : Window
{
RowDefinition rowDef1;
ColumnDefinition colDef1;

private void removeRow(object sender, RoutedEventArgs e)
{
if (grid1.RowDefinitions.Count <= 0) { Console.WriteLine("No More Rows to Remove!"); } else { grid1.RowDefinitions.RemoveAt(0); } } } } [/csharp]