Giter VIP home page Giter VIP logo

litegui's Introduction

LiteGui

Introduction

Immediate Mode GUI from scratch based on .Net Standard 2.0

Currently only bindings WinForm

Plan more platforms in the future


Plan

  1. Text
  2. Button
  3. Frame
    1. Clipping
    2. Scrollbar
  4. Group
  5. InputText
    1. Input Filter
    2. Undo/Redo
    3. Selection
    4. Copy/Paste/Cut
    5. Single/Mulit
    6. History
  6. Slider
  7. Separator
  8. CheckBox
  9. Texture
  10. RadioButton
  11. ToolTips
  12. Menu
  13. DragInput
  14. Layout
    1. Vertical
    2. Horizontal
    3. Custom
  15. SameLine/NextLine
  16. ListBox
  17. Tree
  18. FreeType
  19. ColorPikcer
  20. Popup
  21. Selectable
  22. Combox
  23. Window
    1. Drag
    2. Title
    3. Sizable
    4. Collapse
  24. ProgressBar

Usage

Use LGui.XXX() between LGui.Begin() and LGui.End() The next examples to omit this part and variable define

Code

LGui.Text("Lite Gui {0}", Value);
if (LGui.Button("Click Me"))
{

}
LGui.Slider("SliderV", ref Value, 0, 10, 1);

Result Usage1

Code

if (LGui.ColorButton("ColorButton1", Color, new LGuiVec2(30, 30)))
{
    LGui.OpenPopup("Popup 1");
}

if (LGui.BeginPopup("Popup 1", new LGuiVec2(260, 310)))
{
    LGui.ColorPicker("Color Picker 1", ref Color);
    LGui.EndPopup();
}

LGui.ListBox("ListBox", ref ItemIndex, Items, new LGuiVec2(100, 150));
LGui.Text("Current Item : {0}", Items[ItemIndex]);

Result Usage2

MemoryEditor & Window Usage3

Demo UsageWhole

litegui's People

Contributors

unskytoo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.