public static void SetBtnStatus(bool status, Button btn_Status)
{
if (btn_Status.InvokeRequired)
{
btn_Status.BeginInvoke(
new MethodInvoker(
delegate() { SetBtnStatus(status, btn_Status); }));
}
else
{
btn_Status.Enabled = status;
}
}
Using a SCORM Wrapper to Simplify the Workflow
4 months ago
No comments:
Post a Comment