Esempio n. 1
0
 protected override void CreateChildItems(RadElement parent)
 {
     this.backstageElement = new BackstageViewElement();
     this.RootElement.Children.Add((RadElement)this.backstageElement);
     base.CreateChildItems(parent);
     this.Visible = false;
 }
Esempio n. 2
0
 public BackstageItemsPanelElement(BackstageViewElement owner)
 {
     this.owner = owner;
     if (this.owner.IsFullScreen)
     {
         this.backButtonElement.Visibility = ElementVisibility.Visible;
     }
     else
     {
         this.backButtonElement.Visibility = ElementVisibility.Collapsed;
     }
     this.owner.PropertyChanged += new PropertyChangedEventHandler(this.owner_PropertyChanged);
 }
 public BackstageItemsPanelElement(BackstageViewElement owner)
 {
     this.owner = owner;
 }