Simple custom material windows form element (All open sorce)
- DialogOk : View with one Button
- DialogOKCancel : View with two Button (Check, Cancel)
- DialogOKCancel : View with three Button (Yes, No, Cancel)
var dialog = new DialogOK("Title", "XXXAAA Content");
//Self Definition
dialog.SetBackGroundColor(Color.AliceBlue)
.SetSelectImageIcon(2);
dialog.SetButtonBackGroundColor(Color.Orange)
.SetButtonText("Modify");
dialog.ShowDialog();
customProgressBar.FillDegree = 100;
customProgressBar.Refresh();



