I'm new in javascript, is it possible to create class container like "Grid" in WPF? it's desirable without jQuery etc. I need create container like Grid in XAML code below.
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid x:Name="grid1">
<Grid.RowDefinitions>
<RowDefinition Height="30*"></RowDefinition>
<RowDefinition Height="30*"></RowDefinition>
<RowDefinition Height="30*"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="100*">
</ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid x:Name="Grid2" Grid.Row="0" Grid.Column="0"></Grid>
</Grid>