var newValue = (bool)args.NewValue;
HZWaitLoadingEx source = (HZWaitLoadingEx)sender;
ControlTemplate ct = source.Template;
ContentPresenter busycontent = ct.FindName("busycontent", source) as ContentPresenter;
busycontent.Visibility = newValue ? Visibility.Visible : Visibility.Collapsed;