Skip to content

xndrpr/GarnetControls

Repository files navigation

GarnetControls

Controls

  • Window - GarnetControls.Controls.Window
  • Button - GarnetControls.Controls.Button
  • TitleButton - GarnetControls.Controls.TitleButton
  • NumericUpDown - GarnetControls.Controls.NumericUpDown

Get started

1 - Add the reference to the controls

<Window xmlns:gc="clr-namespace:GarnetControls.Controls;assembly=GarnetControls">

</Window>

2 - Use the controls

Window

<gc:Window></gc:Window>
Show/Hide title
<gc:Window xmlns:gc="clr-namespace:GarnetControls.Controls;assembly=GarnetControls" ShowTitle="True/False">
</gc:Window>

namespace YourNamespace
{
    public partial class MainWindow : GarnetControls.Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }
    }
}

Button

<gc:Button>Button</gc:Button>

TitleButton

This is a button like in the title.

<gc:TitleButton>Title Button</gc:Button>

NumericUpDown

This is a simple numeric up down control

<gc:NumericUpDown MinValue="0" MaxValue="100"/>

About

This is my own controls for the .NET WPF apps.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages