I Have 2 button , Start And capture. I want disable capture button on form load and enable start. and on after click on start disable start button and enable capture. Pleas
There are two ways to disable a button In C# WPF.
.xaml
IsEnabled="False"
IsEnabled
.cs
ButtonName.IsEnabled = false;