Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the NaviControlCollection class
 /// </summary>
 /// <param name="owner">The parent control</param>
 public NaviControlCollection(Control owner)
     : base(owner)
 {
     if (owner is NaviBar)
     {
         ownerBar = (NaviBar)owner;
     }
 }
Ejemplo n.º 2
0
 public void Initialize(NaviBar bar)
 {
     this.bar = bar;
     checkedListBoxBands.Items.Clear();
     foreach (NaviBand band in bar.Bands)
     {
         checkedListBoxBands.Items.Add(band.Text, band.Visible);
     }
     Translate();
 }
 public void Initialize(NaviBar bar)
 {
    this.bar = bar;
    checkedListBoxBands.Items.Clear();
    foreach (NaviBand band in bar.Bands)
    {
       checkedListBoxBands.Items.Add(band.Text, band.Visible);
    }
    Translate();
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Intializes a new instance of the NaviLayoutEngine class
 /// </summary>
 /// <param name="owner">The Bar owner</param>
 public NaviLayoutEngine(NaviBar owner)
 {
     ownerBar = owner;
 }
 public NaviLayoutEngineOffice(NaviBar owner)
     : base(owner)
 {
 }
 /// <summary>
 /// Initializes a new instance of the NaviBandCollection class
 /// </summary>
 public NaviBandCollection(NaviBar owner)
     : base()
 {
     this.owner = owner;
     innerList  = new ArrayList();
 }
 /// <summary>
 /// Initializes a new instance of the NaviBandCollection class
 /// </summary>
 public NaviBandCollection(NaviBar owner)
    : base()
 {
    this.owner = owner;
    innerList = new ArrayList();
 }
 /// <summary>
 /// Initializes a new instance of the NaviLayoutFactory class 
 /// </summary>
 /// <param name="owner">The owner control</param>
 public NaviLayoutFactory(NaviBar owner)
 {
    ownerBar = owner;
 }
Ejemplo n.º 9
0
 /// <summary>
 /// Initializes a new instance of the NaviLayoutFactory class
 /// </summary>
 /// <param name="owner">The owner control</param>
 public NaviLayoutFactory(NaviBar owner)
 {
     ownerBar = owner;
 }
		public NaviLayoutEngineOffice(NaviBar owner)
			: base(owner)
		{
		}
Ejemplo n.º 11
0
 /// <summary>
 /// Initializes a new instance of the NaviControlCollection class 
 /// </summary>
 /// <param name="owner">The parent control</param>
 public NaviControlCollection(Control owner)
    : base(owner)
 {
    if (owner is NaviBar)
       ownerBar = (NaviBar)owner;
 }
 /// <summary>
 /// Intializes a new instance of the NaviLayoutEngine class
 /// </summary>
 /// <param name="owner">The Bar owner</param>
 public NaviLayoutEngine(NaviBar owner)
 {
    ownerBar = owner;
 }
Ejemplo n.º 13
0
 public override void Initialize(IComponent component)
 {
    base.Initialize(component);
    designingControl = component as NaviBar;
    InitializeServices();
 }