protected override void OnActivated()
 {
     base.OnActivated();
     if (Frame.Template is ICaptionPanelHolder)
     {
         ApplicationCaption8_1 captionPanel = ((ICaptionPanelHolder)Frame.Template).CaptionPanel;
         captionPanel.Visible = false;
     }
 }
Exemple #2
0
 protected override void OnActivated()
 {
     base.OnActivated();
     if (Frame.Template is ICaptionPanelHolder)
     {
         ApplicationCaption8_1 captionPanel = ((ICaptionPanelHolder)Frame.Template).CaptionPanel;
         captionPanel.Text    = View.Caption;
         captionPanel.Visible = !string.IsNullOrEmpty(captionPanel.Text);
     }
 }