Skip to content
This repository has been archived by the owner on Nov 3, 2020. It is now read-only.

sys27/Edge

Repository files navigation

Edge

A new syntax to create UI (WPF).

Sample:

using SomeNamespace;

Window {
    Title: "kjgkhj",
    Icon: BitmapImage("Icon.ico"),
    
    Grid {
        ColumnDefinitions: [
            ColumnDefinition { Width: 100 },
            ColumnDefinition
        ],
        TextBox#tb {
            Text: "Hi!!!",
            Style: #st
        },
        TextBlock {
            Text: @tb.Text,
            Grid.Column: 1,
            Style: {
                HorizontalAlignment: Center
            }
        }
        
    },
    
    Resources: [
        Style#st {
            Height: 200
        }
    ]
}

About

A new syntax to create UI (WPF).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages