VOOZH about

URL: https://www.nuget.org/packages/Frank.Wpf.Controls.Grid/

⇱ NuGet Gallery | Frank.Wpf.Controls.Grid 5.2.0




👁 Image
Frank.Wpf.Controls.Grid 5.2.0

dotnet add package Frank.Wpf.Controls.Grid --version 5.2.0
 
 
NuGet\Install-Package Frank.Wpf.Controls.Grid -Version 5.2.0
 
 
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="5.2.0" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Frank.Wpf.Controls.Grid" Version="5.2.0" />
 
Directory.Packages.props
<PackageReference Include="Frank.Wpf.Controls.Grid" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Frank.Wpf.Controls.Grid --version 5.2.0
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Frank.Wpf.Controls.Grid, 5.2.0"
 
 
#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.
#:package Frank.Wpf.Controls.Grid@5.2.0
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Frank.Wpf.Controls.Grid&version=5.2.0
 
Install as a Cake Addin
#tool nuget:?package=Frank.Wpf.Controls.Grid&version=5.2.0
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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 Versions Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 net8.0-windows7.0 is compatible.  net9.0-windows net9.0-windows was computed.  net10.0-windows net10.0-windows was computed. 
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 266 8/17/2024
5.1.0 211 8/17/2024
5.1.0-preview 210 8/17/2024
5.0.0 247 8/16/2024
5.0.0-preview 185 8/17/2024
4.0.0 209 8/15/2024
4.0.0-preview 182 8/15/2024
3.1.0 200 8/12/2024
3.1.0-preview 175 8/14/2024
3.0.0 211 8/12/2024
3.0.0-preview 204 8/12/2024
2.3.0 187 8/12/2024
2.3.0-preview 188 8/12/2024
2.2.0 209 8/7/2024
2.2.0-preview 182 8/12/2024
2.1.0 172 8/5/2024
2.1.0-preview 166 8/5/2024
2.0.0 167 8/4/2024
2.0.0-preview 148 8/5/2024
1.5.0-preview 141 8/4/2024
Loading failed