Exemple #1
0
        /// ------------------------------------------------------------------------------------
        /// <summary>
        /// Create and information bar and place it in the specified container control.
        /// </summary>
        /// <param name="ibContainer"></param>
        /// ------------------------------------------------------------------------------------
        private void SetupInfoBar(Control ibContainer)
        {
            // TODO-Linux: Create an Info bar add add it to passing Container
            Debug.WriteLine("Warning: SetupInfoBar()) may not be fully implemented.");

            if (m_infoBar == null)
            {
                m_infoBar      = new InfoBarPanel();
                m_infoBar.Dock = DockStyle.Fill;
            }

            if (ibContainer != null)
            {
                ibContainer.Controls.Add(m_infoBar);
            }
        }
Exemple #2
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Create and information bar and place it in the specified container control.
		/// </summary>
		/// <param name="ibContainer"></param>
		/// ------------------------------------------------------------------------------------
		private void SetupInfoBar(Control ibContainer)
		{
			// TODO-Linux: Create an Info bar and add it to passing Container
			Debug.WriteLine("Warning: SetupInfoBar()) may not be fully implemented.");

			if (m_infoBar == null)
			{
				m_infoBar = new InfoBarPanel();
				m_infoBar.Dock = DockStyle.Fill;
			}

			if (ibContainer != null)
				ibContainer.Controls.Add(m_infoBar);
		}