I have one progress bar and i want check contion is like that
if( StkProgressbar.Visibility = Visibility.Visible)
{
//coding
}
else
{
}
But if condition give error Cannot implicitly convert type ‘System.Windows.Visibility’ to ‘bool’
How can i solve this problem?
Help me
1 Answer