Click here to Skip to main content
15,860,972 members
Articles / Desktop Programming / Windows Forms

BSEtunes

Rate me:
Please Sign up or sign in to vote.
4.67/5 (11 votes)
24 Apr 2010CPOL4 min read 64.2K   4.3K   58  
BSEtunes is a MySQL based, full manageable, networkable single or multiuser jukebox application
using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
using System.Drawing;

namespace BSE.Platten.Common
{
	public class ToolStripSettings
	{
		#region FieldsPrivate

		private Point m_location;
		private string m_strName;
		private Size m_size;
		private string m_strToolStripPanelName;
		private bool m_bVisible = true;

		#endregion

		#region Properties
        /// <summary>
        /// Gets or sets the coordinates of the upper-left corner of the toolstrip relative to the upper-left
        /// corner of its container.
        /// </summary>
		public Point Location
		{
			get { return this.m_location; }
			set { this.m_location = value; }
		}
        /// <summary>
        /// Gets or sets the name of the control.
        /// </summary>
		public string Name
		{
			get { return this.m_strName; }
			set { this.m_strName = value; }
		}
        /// <summary>
        /// Gets or sets the height and width of the toolstrip.
        /// </summary>
		public Size Size
		{
			get { return this.m_size; }
			set { this.m_size = value; }
		}
        /// <summary>
        /// Gets or sets the name of the toolstrippanel which contains the toolstrip.
        /// </summary>
		public string ToolStripPanelName
		{
			get { return this.m_strToolStripPanelName; }
			set { this.m_strToolStripPanelName = value; }
		}
        /// <summary>
        /// Gets or sets a value indicating whether the toolstrip and all its parent controls are displayed
        /// </summary>
		public bool Visible
		{
			get { return this.m_bVisible; }
			set { this.m_bVisible = value; }
		}

		#endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions