Frank.Wpf.Controls.Grid 4.0.0-preview

This is a prerelease version of Frank.Wpf.Controls.Grid.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Frank.Wpf.Controls.Grid --version 4.0.0-preview                
NuGet\Install-Package Frank.Wpf.Controls.Grid -Version 4.0.0-preview                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Frank.Wpf.Controls.Grid" Version="4.0.0-preview" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Frank.Wpf.Controls.Grid --version 4.0.0-preview                
#r "nuget: Frank.Wpf.Controls.Grid, 4.0.0-preview"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Frank.Wpf.Controls.Grid as a Cake Addin
#addin nuget:?package=Frank.Wpf.Controls.Grid&version=4.0.0-preview&prerelease

// Install Frank.Wpf.Controls.Grid as a Cake Tool
#tool nuget:?package=Frank.Wpf.Controls.Grid&version=4.0.0-preview&prerelease                

Frank.Wpf.Controls.Grid

A simple WPF grid control that supports row and column definitions for easy layout of controls.

Usage

using Frank.Wpf.Controls.Grid;

public class MyWindow : Window
{
    public MyWindow()
    {
        var grid = new Grid(3, 3);

        var button1 = new Button { Content = "Button 1" };
        var button2 = new Button { Content = "Button 2" };
        var button3 = new Button { Content = "Button 3" };
        var button4 = new Button { Content = "Button 4" };

        grid.SetCellContent(0, 0, button1);
        grid.SetCellContent(0, 1, button2);
        grid.SetCellContent(1, 0, button3);
        grid.SetCellContent(1, 1, button4);
        
        Content = grid;
    }
}
Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Frank.Wpf.Controls.Grid:

Package Downloads
Frank.Wpf.Tests.App

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
5.2.0 115 8/17/2024
5.1.0 106 8/17/2024
5.1.0-preview 124 8/17/2024
5.0.0 139 8/16/2024
5.0.0-preview 98 8/17/2024
4.0.0 117 8/15/2024
4.0.0-preview 103 8/15/2024
3.1.0 115 8/12/2024
3.1.0-preview 86 8/14/2024
3.0.0 111 8/12/2024
3.0.0-preview 109 8/12/2024
2.3.0 94 8/12/2024
2.3.0-preview 99 8/12/2024
2.2.0 93 8/7/2024
2.2.0-preview 79 8/12/2024
2.1.0 84 8/5/2024
2.1.0-preview 65 8/5/2024
2.0.0 66 8/4/2024
2.0.0-preview 52 8/5/2024
1.5.0 79 7/20/2024
1.5.0-preview 62 8/4/2024
1.0.0-preview 72 7/20/2024