From afbec2d46b2b802d37cd72c4262e5de5d7839e88 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 5 Jan 2016 14:56:51 +0000 Subject: [PATCH 1/4] Updated readme. --- README.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 976dd98..c18b2c6 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,25 @@ -# DarkUI +## DarkUI Dark themed control and docking library for .NET WinForms. + +### About DarkUI +DarkUI is an attempt to create a simple, extensible control library which emulates the look and feel of popular tabbed document interfaces such as Visual Studio, Photoshop, WebStorm, and XCode. Originally just a collection of bug fixes and enhancements built on top of WinForms, it has now evolved in to a fully working docking and control library. + +### How to use +DarkUI is easy to use. It uses a mix of inherited control types (text box, button, label etc.) and a few completely custom additions (dock panel, list view, scrollbar etc.) If you've ever built a WinForms application before, you should be able to easily use DarkUI in exactly the same way. + +Simply download the latest version from GitHub and build it - the example application included shows how you can build a Visual Studio style tabbed interface within minutes. + +For more detailed information and tutorials check out the [GitHub project wiki](https://github.com/RobinPerris/DarkUI/wiki). + +### Screenshots +Game map editor +[[http://www.darkui.com/images/editor.png]] + +Lua script editor +[[http://www.darkui.com/images/lua.png]] + +Example docking application +[[http://www.darkui.com/images/docking.png]] + +Controls preview +[[http://www.darkui.com/images/controls.png]] \ No newline at end of file From c0cce8ed4159dba864774cd0f326610698651e89 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 5 Jan 2016 14:59:18 +0000 Subject: [PATCH 2/4] Updated readme. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c18b2c6..f440458 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,13 @@ For more detailed information and tutorials check out the [GitHub project wiki]( ### Screenshots Game map editor -[[http://www.darkui.com/images/editor.png]] +![Game map editor](http://www.darkui.com/images/editor.png) Lua script editor -[[http://www.darkui.com/images/lua.png]] +![Lua script editor](http://www.darkui.com/images/lua.png) Example docking application -[[http://www.darkui.com/images/docking.png]] +![Example docking application](http://www.darkui.com/images/docking.png) Controls preview -[[http://www.darkui.com/images/controls.png]] \ No newline at end of file +![Controls preview](http://www.darkui.com/images/controls.png) \ No newline at end of file From aa224496fbe3a2abe49854b47dd6491b119d5774 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 5 Jan 2016 14:59:51 +0000 Subject: [PATCH 3/4] Updated readme. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f440458..952c942 100644 --- a/README.md +++ b/README.md @@ -13,13 +13,17 @@ For more detailed information and tutorials check out the [GitHub project wiki]( ### Screenshots Game map editor + ![Game map editor](http://www.darkui.com/images/editor.png) Lua script editor + ![Lua script editor](http://www.darkui.com/images/lua.png) Example docking application + ![Example docking application](http://www.darkui.com/images/docking.png) Controls preview + ![Controls preview](http://www.darkui.com/images/controls.png) \ No newline at end of file From 8ca3a187d12d140cc93c1546e154d4005579b015 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 5 Jan 2016 15:01:20 +0000 Subject: [PATCH 4/4] Added project site link. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 952c942..b52aa59 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ Dark themed control and docking library for .NET WinForms. ### About DarkUI DarkUI is an attempt to create a simple, extensible control library which emulates the look and feel of popular tabbed document interfaces such as Visual Studio, Photoshop, WebStorm, and XCode. Originally just a collection of bug fixes and enhancements built on top of WinForms, it has now evolved in to a fully working docking and control library. +Check out our [GitHub Pages site](http://www.darkui.com). + ### How to use DarkUI is easy to use. It uses a mix of inherited control types (text box, button, label etc.) and a few completely custom additions (dock panel, list view, scrollbar etc.) If you've ever built a WinForms application before, you should be able to easily use DarkUI in exactly the same way.