From b559959bc9093052cca6a5136d4f5472171ab838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Su=C3=A1rez=20Ruiz?= Date: Sat, 21 May 2022 11:44:02 +0200 Subject: [PATCH] Updated README --- README.md | 99 +++++++++++++++++++++++- images/circularlayout.png | Bin 0 -> 27731 bytes images/docklayout.png | Bin 0 -> 22931 bytes images/{mauilayout.gif => mauipane.gif} | Bin images/uniformgrid.png | Bin 0 -> 14920 bytes images/wraplayout.png | Bin 0 -> 21337 bytes 6 files changed, 98 insertions(+), 1 deletion(-) create mode 100644 images/circularlayout.png create mode 100644 images/docklayout.png rename images/{mauilayout.gif => mauipane.gif} (100%) create mode 100644 images/uniformgrid.png create mode 100644 images/wraplayout.png diff --git a/README.md b/README.md index cb2aded..5d36e6a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,99 @@ # MauiPane -.NET MAUI Layouts Library + +.NET MAUI **Layouts** Library. + + + +### CircularLayout + +The CircularLayout is a simple Panel derivative that lays out its children in a **circular** arrangement. It has some useful properties to allow some customization like the Orientation (Clockwise or Counterclockwise). + +``` + + + + + + + +``` + + +### DockLayout + +The DockLayout allows you to **dock** the child controls to the top, bottom, left or right. By default, the last control, if not given a specific dock position, will fill the remaining space. You can achieve the same with the Grid panel, but for the simpler situations, the DockLayout will be easier to use. Use the DockLayout whenever you need to dock one or several controls to one of the sides, like for dividing up the screen into specific areas. + +``` + +