Пример #1
0
        public static void RegisterArea(IDashboardArea dashboardArea) {
            var title = dashboardArea.Title;

            if (Areas.ContainsKey(title)) {
                return;
            }

            Areas.Add(title, dashboardArea);
        }
Пример #2
0
        public static void RegisterArea(IDashboardArea dashboardArea)
        {
            var title = dashboardArea.Title;

            if (Areas.ContainsKey(title))
            {
                return;
            }

            Areas.Add(title, dashboardArea);
        }
		public void Config(
			AptifyApplication ApplicationObject,
			IDashboardArea Area,
			long PartID,
			ComponentOrientation Orientation) {
			this.App = ApplicationObject;
			this.Area = Area;
			this.PartId = PartID;
			this.Orientation = Orientation;

			this.InitializeComponent();
			this.DoTheDew();
		}
        public void Config(
            AptifyApplication ApplicationObject,
            IDashboardArea Area,
            long PartID,
            ComponentOrientation Orientation)
        {
            this.App         = ApplicationObject;
            this.Area        = Area;
            this.PartId      = PartID;
            this.Orientation = Orientation;

            this.InitializeComponent();
            this.DoTheDew();
        }