示例#1
0
 // Removes a toolbarl panel from the main toolbar
 public void RemoveToolbarPanel(IToolbarPanel panel)
 {
     this.toolbarHost.Children.Remove((ToolbarPanel)panel);
 }
示例#2
0
 // Adds a toolbar panel to the main toolbar
 public void AddToolbarPanel(IToolbarPanel panel)
 {
     this.toolbarHost.Children.Add((ToolbarPanel)panel);
 }