Click here to Skip to main content
15,896,359 members
Articles / Programming Languages / C#

Moveable Resizable Objects

Rate me:
Please Sign up or sign in to vote.
4.98/5 (59 votes)
9 Oct 2009CPOL198 min read 125.9K   8.7K   178  
Here is a description of an extremely powerful mechanism that makes screen objects moveable and resizable.
namespace Test_MoveGraphLibrary
{
    partial class Form_BarCharts
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System .ComponentModel .IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose (bool disposing)
        {
            if (disposing && (components != null))
            {
                components .Dispose ();
            }
            base .Dispose (disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent ()
        {
            this .components = new System .ComponentModel .Container ();
            this .numericUD_Sets = new System .Windows .Forms .NumericUpDown ();
            this .numericUD_Segments = new System .Windows .Forms .NumericUpDown ();
            this .btnStartClr = new System .Windows .Forms .Button ();
            this .btnEndClr = new System .Windows .Forms .Button ();
            this .btnAddChart = new System .Windows .Forms .Button ();
            this .menuOnBarChart = new System .Windows .Forms .ContextMenuStrip (this .components);
            this .miBarChartGeneralParams = new System .Windows .Forms .ToolStripMenuItem ();
            this .miRotateClockwise = new System .Windows .Forms .ToolStripMenuItem ();
            this .miRotateCounterclock = new System .Windows .Forms .ToolStripMenuItem ();
            this .toolStripSeparator5 = new System .Windows .Forms .ToolStripSeparator ();
            this .miHideAreaComments = new System .Windows .Forms .ToolStripMenuItem ();
            this .miUnveilAreaComments = new System .Windows .Forms .ToolStripMenuItem ();
            this .toolStripSeparator1 = new System .Windows .Forms .ToolStripSeparator ();
            this .miTextScaleParams = new System .Windows .Forms .ToolStripMenuItem ();
            this .miNumScaleParams = new System .Windows .Forms .ToolStripMenuItem ();
            this .toolStripSeparator2 = new System .Windows .Forms .ToolStripSeparator ();
            this .miIntoClipboard = new System .Windows .Forms .ToolStripMenuItem ();
            this .moColoredStripsAsIs = new System .Windows .Forms .ToolStripMenuItem ();
            this .miBarchartAsIs = new System .Windows .Forms .ToolStripMenuItem ();
            this .miFullAsIs = new System .Windows .Forms .ToolStripMenuItem ();
            this .toolStripSeparator4 = new System .Windows .Forms .ToolStripSeparator ();
            this .moColoredStripsOnWhite = new System .Windows .Forms .ToolStripMenuItem ();
            this .miBarchartOnWhite = new System .Windows .Forms .ToolStripMenuItem ();
            this .miFullColorsOnWhite = new System .Windows .Forms .ToolStripMenuItem ();
            this .miFullWhiteOnWhite = new System .Windows .Forms .ToolStripMenuItem ();
            this .toolStripSeparator3 = new System .Windows .Forms .ToolStripSeparator ();
            this .miSendUnderneath = new System .Windows .Forms .ToolStripMenuItem ();
            this .miDeleteBarChart = new System .Windows .Forms .ToolStripMenuItem ();
            this .menuOnScale = new System .Windows .Forms .ContextMenuStrip (this .components);
            this .miModifyScale = new System .Windows .Forms .ToolStripMenuItem ();
            this .miFlipScale = new System .Windows .Forms .ToolStripMenuItem ();
            this .miHideSCale = new System .Windows .Forms .ToolStripMenuItem ();
            this .toolStripSeparator6 = new System .Windows .Forms .ToolStripSeparator ();
            this .miFlipDrawingDirection = new System .Windows .Forms .ToolStripMenuItem ();
            this .miHideScaleComments = new System .Windows .Forms .ToolStripMenuItem ();
            this .miUnveilScaleComments = new System .Windows .Forms .ToolStripMenuItem ();
            this .menuOnComment = new System .Windows .Forms .ContextMenuStrip (this .components);
            this .miModifyComment = new System .Windows .Forms .ToolStripMenuItem ();
            this .miHideComment = new System .Windows .Forms .ToolStripMenuItem ();
            this .miDeleteComment = new System .Windows .Forms .ToolStripMenuItem ();
            this .toolStripSeparator8 = new System .Windows .Forms .ToolStripSeparator ();
            this .miSwitchRotationAngle = new System .Windows .Forms .ToolStripMenuItem ();
            this .menuOnEmpty = new System .Windows .Forms .ContextMenuStrip (this .components);
            this .miIntoClipboardAsIs = new System .Windows .Forms .ToolStripMenuItem ();
            this .miIntoClipboardColorsOnWhite = new System .Windows .Forms .ToolStripMenuItem ();
            this .miIntoClipboardWhiteOnWhite = new System .Windows .Forms .ToolStripMenuItem ();
            ((System .ComponentModel .ISupportInitialize) (this .numericUD_Sets)) .BeginInit ();
            ((System .ComponentModel .ISupportInitialize) (this .numericUD_Segments)) .BeginInit ();
            this .menuOnBarChart .SuspendLayout ();
            this .menuOnScale .SuspendLayout ();
            this .menuOnComment .SuspendLayout ();
            this .menuOnEmpty .SuspendLayout ();
            this .SuspendLayout ();
            // 
            // numericUD_Sets
            // 
            this .numericUD_Sets .Location = new System .Drawing .Point (50, 410);
            this .numericUD_Sets .Maximum = new decimal (new int [] {
            9,
            0,
            0,
            0});
            this .numericUD_Sets .Minimum = new decimal (new int [] {
            1,
            0,
            0,
            0});
            this .numericUD_Sets .Name = "numericUD_Sets";
            this .numericUD_Sets .Size = new System .Drawing .Size (46, 22);
            this .numericUD_Sets .TabIndex = 1;
            this .numericUD_Sets .Value = new decimal (new int [] {
            4,
            0,
            0,
            0});
            this .numericUD_Sets .ValueChanged += new System .EventHandler (this .ValueChanged_numericSets);
            // 
            // numericUD_Segments
            // 
            this .numericUD_Segments .Location = new System .Drawing .Point (50, 438);
            this .numericUD_Segments .Maximum = new decimal (new int [] {
            12,
            0,
            0,
            0});
            this .numericUD_Segments .Minimum = new decimal (new int [] {
            2,
            0,
            0,
            0});
            this .numericUD_Segments .Name = "numericUD_Segments";
            this .numericUD_Segments .Size = new System .Drawing .Size (46, 22);
            this .numericUD_Segments .TabIndex = 2;
            this .numericUD_Segments .Value = new decimal (new int [] {
            5,
            0,
            0,
            0});
            // 
            // btnStartClr
            // 
            this .btnStartClr .Image = global::Test_MoveGraphLibrary .Properties .Resources .palette_;
            this .btnStartClr .Location = new System .Drawing .Point (50, 466);
            this .btnStartClr .Name = "btnStartClr";
            this .btnStartClr .Size = new System .Drawing .Size (28, 28);
            this .btnStartClr .TabIndex = 3;
            this .btnStartClr .UseVisualStyleBackColor = true;
            this .btnStartClr .Click += new System .EventHandler (this .Click_btnStartClr);
            // 
            // btnEndClr
            // 
            this .btnEndClr .Image = global::Test_MoveGraphLibrary .Properties .Resources .palette_;
            this .btnEndClr .Location = new System .Drawing .Point (142, 466);
            this .btnEndClr .Name = "btnEndClr";
            this .btnEndClr .Size = new System .Drawing .Size (28, 28);
            this .btnEndClr .TabIndex = 4;
            this .btnEndClr .UseVisualStyleBackColor = true;
            this .btnEndClr .Click += new System .EventHandler (this .Click_btnEndClr);
            // 
            // btnAddChart
            // 
            this .btnAddChart .Location = new System .Drawing .Point (50, 500);
            this .btnAddChart .Name = "btnAddChart";
            this .btnAddChart .Size = new System .Drawing .Size (120, 28);
            this .btnAddChart .TabIndex = 5;
            this .btnAddChart .Text = "Add";
            this .btnAddChart .UseVisualStyleBackColor = true;
            this .btnAddChart .Click += new System .EventHandler (this .Click_btnAddChart);
            // 
            // menuOnBarChart
            // 
            this .menuOnBarChart .Items .AddRange (new System .Windows .Forms .ToolStripItem [] {
            this.miBarChartGeneralParams,
            this.miRotateClockwise,
            this.miRotateCounterclock,
            this.toolStripSeparator5,
            this.miHideAreaComments,
            this.miUnveilAreaComments,
            this.toolStripSeparator1,
            this.miTextScaleParams,
            this.miNumScaleParams,
            this.toolStripSeparator2,
            this.miIntoClipboard,
            this.toolStripSeparator3,
            this.miSendUnderneath,
            this.miDeleteBarChart});
            this .menuOnBarChart .Name = "contextMenuOnBarChart";
            this .menuOnBarChart .ShowImageMargin = false;
            this .menuOnBarChart .Size = new System .Drawing .Size (244, 270);
            this .menuOnBarChart .Opening += new System .ComponentModel .CancelEventHandler (this .OnOpening_menuOnBarChart);
            // 
            // miBarChartGeneralParams
            // 
            this .miBarChartGeneralParams .Name = "miBarChartGeneralParams";
            this .miBarChartGeneralParams .Size = new System .Drawing .Size (243, 22);
            this .miBarChartGeneralParams .Text = "Modify bar chart...";
            this .miBarChartGeneralParams .Click += new System .EventHandler (this .Click_miBarChartGeneralParams);
            // 
            // miRotateClockwise
            // 
            this .miRotateClockwise .Name = "miRotateClockwise";
            this .miRotateClockwise .Size = new System .Drawing .Size (243, 22);
            this .miRotateClockwise .Text = "Rotate clockwise";
            this .miRotateClockwise .Click += new System .EventHandler (this .Click_miRotateClockwise);
            // 
            // miRotateCounterclock
            // 
            this .miRotateCounterclock .Name = "miRotateCounterclock";
            this .miRotateCounterclock .Size = new System .Drawing .Size (243, 22);
            this .miRotateCounterclock .Text = "Rotate counter-clockwise";
            this .miRotateCounterclock .Click += new System .EventHandler (this .Click_miRotateCounterclock);
            // 
            // toolStripSeparator5
            // 
            this .toolStripSeparator5 .Name = "toolStripSeparator5";
            this .toolStripSeparator5 .Size = new System .Drawing .Size (240, 6);
            // 
            // miHideAreaComments
            // 
            this .miHideAreaComments .Name = "miHideAreaComments";
            this .miHideAreaComments .Size = new System .Drawing .Size (243, 22);
            this .miHideAreaComments .Text = "Hide comments";
            this .miHideAreaComments .Click += new System .EventHandler (this .Click_miHideAreaComments);
            // 
            // miUnveilAreaComments
            // 
            this .miUnveilAreaComments .Name = "miUnveilAreaComments";
            this .miUnveilAreaComments .Size = new System .Drawing .Size (243, 22);
            this .miUnveilAreaComments .Text = "Unveil comments";
            this .miUnveilAreaComments .Click += new System .EventHandler (this .Click_miUnveilAreaComments);
            // 
            // toolStripSeparator1
            // 
            this .toolStripSeparator1 .Name = "toolStripSeparator1";
            this .toolStripSeparator1 .Size = new System .Drawing .Size (240, 6);
            // 
            // miTextScaleParams
            // 
            this .miTextScaleParams .Name = "miTextScaleParams";
            this .miTextScaleParams .Size = new System .Drawing .Size (243, 22);
            this .miTextScaleParams .Text = "Text scale parameters...";
            this .miTextScaleParams .Click += new System .EventHandler (this .Click_miTextScaleParams);
            // 
            // miNumScaleParams
            // 
            this .miNumScaleParams .Name = "miNumScaleParams";
            this .miNumScaleParams .Size = new System .Drawing .Size (243, 22);
            this .miNumScaleParams .Text = "Values\' scale parameters...";
            this .miNumScaleParams .Click += new System .EventHandler (this .Click_miNumScaleParams);
            // 
            // toolStripSeparator2
            // 
            this .toolStripSeparator2 .Name = "toolStripSeparator2";
            this .toolStripSeparator2 .Size = new System .Drawing .Size (240, 6);
            // 
            // miIntoClipboard
            // 
            this .miIntoClipboard .DropDownItems .AddRange (new System .Windows .Forms .ToolStripItem [] {
            this.moColoredStripsAsIs,
            this.miBarchartAsIs,
            this.miFullAsIs,
            this.toolStripSeparator4,
            this.moColoredStripsOnWhite,
            this.miBarchartOnWhite,
            this.miFullColorsOnWhite,
            this.miFullWhiteOnWhite});
            this .miIntoClipboard .Name = "miIntoClipboard";
            this .miIntoClipboard .Size = new System .Drawing .Size (243, 22);
            this .miIntoClipboard .Text = "Into Clipboard";
            // 
            // moColoredStripsAsIs
            // 
            this .moColoredStripsAsIs .Name = "moColoredStripsAsIs";
            this .moColoredStripsAsIs .Size = new System .Drawing .Size (271, 22);
            this .moColoredStripsAsIs .Text = "Colored strips";
            this .moColoredStripsAsIs .Click += new System .EventHandler (this .Click_miStripsAsIs);
            // 
            // miBarchartAsIs
            // 
            this .miBarchartAsIs .Name = "miBarchartAsIs";
            this .miBarchartAsIs .Size = new System .Drawing .Size (271, 22);
            this .miBarchartAsIs .Text = "Bar chart";
            this .miBarchartAsIs .Click += new System .EventHandler (this .Click_miBarchartAsIs);
            // 
            // miFullAsIs
            // 
            this .miFullAsIs .Name = "miFullAsIs";
            this .miFullAsIs .Size = new System .Drawing .Size (271, 22);
            this .miFullAsIs .Text = "Full picture";
            this .miFullAsIs .Click += new System .EventHandler (this .Click_miFormAsIs);
            // 
            // toolStripSeparator4
            // 
            this .toolStripSeparator4 .Name = "toolStripSeparator4";
            this .toolStripSeparator4 .Size = new System .Drawing .Size (268, 6);
            // 
            // moColoredStripsOnWhite
            // 
            this .moColoredStripsOnWhite .Name = "moColoredStripsOnWhite";
            this .moColoredStripsOnWhite .Size = new System .Drawing .Size (271, 22);
            this .moColoredStripsOnWhite .Text = "Colored strips (on white)";
            this .moColoredStripsOnWhite .Click += new System .EventHandler (this .Click_miStripsOnWhite);
            // 
            // miBarchartOnWhite
            // 
            this .miBarchartOnWhite .Name = "miBarchartOnWhite";
            this .miBarchartOnWhite .Size = new System .Drawing .Size (271, 22);
            this .miBarchartOnWhite .Text = "Bar chart (on white)";
            this .miBarchartOnWhite .Click += new System .EventHandler (this .Click_miBarchartOnWhite);
            // 
            // miFullColorsOnWhite
            // 
            this .miFullColorsOnWhite .Name = "miFullColorsOnWhite";
            this .miFullColorsOnWhite .Size = new System .Drawing .Size (271, 22);
            this .miFullColorsOnWhite .Text = "Full picture (areas on white)";
            this .miFullColorsOnWhite .Click += new System .EventHandler (this .Click_miFormColorsOnWhite);
            // 
            // miFullWhiteOnWhite
            // 
            this .miFullWhiteOnWhite .Name = "miFullWhiteOnWhite";
            this .miFullWhiteOnWhite .Size = new System .Drawing .Size (271, 22);
            this .miFullWhiteOnWhite .Text = "Full picture (white on white)";
            this .miFullWhiteOnWhite .Click += new System .EventHandler (this .Click_miFormWhiteOnWhite);
            // 
            // toolStripSeparator3
            // 
            this .toolStripSeparator3 .Name = "toolStripSeparator3";
            this .toolStripSeparator3 .Size = new System .Drawing .Size (240, 6);
            // 
            // miSendUnderneath
            // 
            this .miSendUnderneath .Name = "miSendUnderneath";
            this .miSendUnderneath .Size = new System .Drawing .Size (243, 22);
            this .miSendUnderneath .Text = "Send underneath";
            this .miSendUnderneath .Click += new System .EventHandler (this .Click_miSendUnderneath);
            // 
            // miDeleteBarChart
            // 
            this .miDeleteBarChart .Name = "miDeleteBarChart";
            this .miDeleteBarChart .Size = new System .Drawing .Size (243, 22);
            this .miDeleteBarChart .Text = "Delete bar chart";
            this .miDeleteBarChart .Click += new System .EventHandler (this .Click_miDeleteBarChart);
            // 
            // menuOnScale
            // 
            this .menuOnScale .Items .AddRange (new System .Windows .Forms .ToolStripItem [] {
            this.miModifyScale,
            this.miFlipScale,
            this.miHideSCale,
            this.toolStripSeparator6,
            this.miFlipDrawingDirection,
            this.miHideScaleComments,
            this.miUnveilScaleComments});
            this .menuOnScale .Name = "contextMenuOnScale";
            this .menuOnScale .ShowImageMargin = false;
            this .menuOnScale .Size = new System .Drawing .Size (199, 142);
            this .menuOnScale .Opening += new System .ComponentModel .CancelEventHandler (this .OnOpening_menuOnScale);
            // 
            // miModifyScale
            // 
            this .miModifyScale .Name = "miModifyScale";
            this .miModifyScale .Size = new System .Drawing .Size (198, 22);
            this .miModifyScale .Text = "Modify scale...";
            this .miModifyScale .Click += new System .EventHandler (this .Click_miModifyScale);
            // 
            // miFlipScale
            // 
            this .miFlipScale .Name = "miFlipScale";
            this .miFlipScale .Size = new System .Drawing .Size (198, 22);
            this .miFlipScale .Text = "Flip scale";
            this .miFlipScale .Click += new System .EventHandler (this .Click_miFlipScale);
            // 
            // miHideSCale
            // 
            this .miHideSCale .Name = "miHideSCale";
            this .miHideSCale .Size = new System .Drawing .Size (198, 22);
            this .miHideSCale .Text = "Hide scale";
            this .miHideSCale .Click += new System .EventHandler (this .Click_miHideScale);
            // 
            // toolStripSeparator6
            // 
            this .toolStripSeparator6 .Name = "toolStripSeparator6";
            this .toolStripSeparator6 .Size = new System .Drawing .Size (195, 6);
            // 
            // miFlipDrawingDirection
            // 
            this .miFlipDrawingDirection .Name = "miFlipDrawingDirection";
            this .miFlipDrawingDirection .Size = new System .Drawing .Size (198, 22);
            this .miFlipDrawingDirection .Text = "Flip drawing direction";
            this .miFlipDrawingDirection .Click += new System .EventHandler (this .Click_miFlipDrawingDirection);
            // 
            // miHideScaleComments
            // 
            this .miHideScaleComments .Name = "miHideScaleComments";
            this .miHideScaleComments .Size = new System .Drawing .Size (198, 22);
            this .miHideScaleComments .Text = "Hide comments";
            this .miHideScaleComments .Click += new System .EventHandler (this .Click_miHideScaleComments);
            // 
            // miUnveilScaleComments
            // 
            this .miUnveilScaleComments .Name = "miUnveilScaleComments";
            this .miUnveilScaleComments .Size = new System .Drawing .Size (198, 22);
            this .miUnveilScaleComments .Text = "Unveil comments";
            this .miUnveilScaleComments .Click += new System .EventHandler (this .Click_miUnveilScaleComments);
            // 
            // menuOnComment
            // 
            this .menuOnComment .Items .AddRange (new System .Windows .Forms .ToolStripItem [] {
            this.miModifyComment,
            this.miHideComment,
            this.miDeleteComment,
            this.toolStripSeparator8,
            this.miSwitchRotationAngle});
            this .menuOnComment .Name = "contextMenuOnComment";
            this .menuOnComment .ShowImageMargin = false;
            this .menuOnComment .Size = new System .Drawing .Size (210, 98);
            // 
            // miModifyComment
            // 
            this .miModifyComment .Name = "miModifyComment";
            this .miModifyComment .Size = new System .Drawing .Size (209, 22);
            this .miModifyComment .Text = "Modify comment";
            this .miModifyComment .Click += new System .EventHandler (this .Click_miModifyComment);
            // 
            // miHideComment
            // 
            this .miHideComment .Name = "miHideComment";
            this .miHideComment .Size = new System .Drawing .Size (209, 22);
            this .miHideComment .Text = "Hide comment";
            this .miHideComment .Click += new System .EventHandler (this .Click_miHideComment);
            // 
            // miDeleteComment
            // 
            this .miDeleteComment .Name = "miDeleteComment";
            this .miDeleteComment .Size = new System .Drawing .Size (209, 22);
            this .miDeleteComment .Text = "Delete comment";
            this .miDeleteComment .Click += new System .EventHandler (this .Click_miDeleteComment);
            // 
            // toolStripSeparator8
            // 
            this .toolStripSeparator8 .Name = "toolStripSeparator8";
            this .toolStripSeparator8 .Size = new System .Drawing .Size (206, 6);
            // 
            // miSwitchRotationAngle
            // 
            this .miSwitchRotationAngle .Name = "miSwitchRotationAngle";
            this .miSwitchRotationAngle .Size = new System .Drawing .Size (209, 22);
            this .miSwitchRotationAngle .Text = "Rotation angle On/Off";
            this .miSwitchRotationAngle .Click += new System .EventHandler (this .Click_miSwitchRotationAngle);
            // 
            // menuOnEmpty
            // 
            this .menuOnEmpty .Items .AddRange (new System .Windows .Forms .ToolStripItem [] {
            this.miIntoClipboardAsIs,
            this.miIntoClipboardColorsOnWhite,
            this.miIntoClipboardWhiteOnWhite});
            this .menuOnEmpty .Name = "contextMenuOnEmpty";
            this .menuOnEmpty .ShowImageMargin = false;
            this .menuOnEmpty .Size = new System .Drawing .Size (299, 70);
            // 
            // miIntoClipboardAsIs
            // 
            this .miIntoClipboardAsIs .Name = "miIntoClipboardAsIs";
            this .miIntoClipboardAsIs .Size = new System .Drawing .Size (298, 22);
            this .miIntoClipboardAsIs .Text = "View into Clipboard";
            this .miIntoClipboardAsIs .Click += new System .EventHandler (this .Click_miFormAsIs);
            // 
            // miIntoClipboardColorsOnWhite
            // 
            this .miIntoClipboardColorsOnWhite .Name = "miIntoClipboardColorsOnWhite";
            this .miIntoClipboardColorsOnWhite .Size = new System .Drawing .Size (298, 22);
            this .miIntoClipboardColorsOnWhite .Text = "View into Clipboard (areas on white)";
            this .miIntoClipboardColorsOnWhite .Click += new System .EventHandler (this .Click_miFormColorsOnWhite);
            // 
            // miIntoClipboardWhiteOnWhite
            // 
            this .miIntoClipboardWhiteOnWhite .Name = "miIntoClipboardWhiteOnWhite";
            this .miIntoClipboardWhiteOnWhite .Size = new System .Drawing .Size (298, 22);
            this .miIntoClipboardWhiteOnWhite .Text = "View into Clipboard (white on white)";
            this .miIntoClipboardWhiteOnWhite .Click += new System .EventHandler (this .Click_miFormWhiteOnWhite);
            // 
            // Form_BarCharts
            // 
            this .AutoScaleDimensions = new System .Drawing .SizeF (8F, 16F);
            this .AutoScaleMode = System .Windows .Forms .AutoScaleMode .Font;
            this .ClientSize = new System .Drawing .Size (785, 589);
            this .Controls .Add (this .numericUD_Segments);
            this .Controls .Add (this .numericUD_Sets);
            this .Controls .Add (this .btnStartClr);
            this .Controls .Add (this .btnAddChart);
            this .Controls .Add (this .btnEndClr);
            this .DoubleBuffered = true;
            this .MaximizeBox = false;
            this .MinimizeBox = false;
            this .Name = "Form_BarCharts";
            this .Text = "Bar charts";
            this .Load += new System .EventHandler (this .OnLoad);
            this .MouseUp += new System .Windows .Forms .MouseEventHandler (this .OnMouseUp);
            this .MouseDoubleClick += new System .Windows .Forms .MouseEventHandler (this .OnMouseDoubleClick);
            this .Paint += new System .Windows .Forms .PaintEventHandler (this .OnPaint);
            this .ContextMenuStripChanged += new System .EventHandler (this .OnContextMenuChanged);
            this .MouseCaptureChanged += new System .EventHandler (this .OnMouseCaptureChanged);
            this .MouseDown += new System .Windows .Forms .MouseEventHandler (this .OnMouseDown);
            this .FormClosing += new System .Windows .Forms .FormClosingEventHandler (this .OnFormClosing);
            this .MouseMove += new System .Windows .Forms .MouseEventHandler (this .OnMouseMove);
            ((System .ComponentModel .ISupportInitialize) (this .numericUD_Sets)) .EndInit ();
            ((System .ComponentModel .ISupportInitialize) (this .numericUD_Segments)) .EndInit ();
            this .menuOnBarChart .ResumeLayout (false);
            this .menuOnScale .ResumeLayout (false);
            this .menuOnComment .ResumeLayout (false);
            this .menuOnEmpty .ResumeLayout (false);
            this .ResumeLayout (false);

        }

        #endregion

        private System .Windows .Forms .NumericUpDown numericUD_Sets;
        private System .Windows .Forms .NumericUpDown numericUD_Segments;
        private System .Windows .Forms .Button btnStartClr;
        private System .Windows .Forms .Button btnEndClr;
        private System .Windows .Forms .Button btnAddChart;
        private System .Windows .Forms .ContextMenuStrip menuOnBarChart;
        private System .Windows .Forms .ToolStripMenuItem miSendUnderneath;
        private System .Windows .Forms .ToolStripMenuItem miHideAreaComments;
        private System .Windows .Forms .ContextMenuStrip menuOnScale;
        private System .Windows .Forms .ContextMenuStrip menuOnComment;
        private System .Windows .Forms .ContextMenuStrip menuOnEmpty;
        private System .Windows .Forms .ToolStripMenuItem miUnveilAreaComments;
        private System .Windows .Forms .ToolStripSeparator toolStripSeparator1;
        private System .Windows .Forms .ToolStripMenuItem miBarChartGeneralParams;
        private System .Windows .Forms .ToolStripMenuItem miTextScaleParams;
        private System .Windows .Forms .ToolStripMenuItem miNumScaleParams;
        private System .Windows .Forms .ToolStripSeparator toolStripSeparator2;
        private System .Windows .Forms .ToolStripMenuItem miIntoClipboard;
        private System .Windows .Forms .ToolStripSeparator toolStripSeparator3;
        private System .Windows .Forms .ToolStripMenuItem moColoredStripsOnWhite;
        private System .Windows .Forms .ToolStripMenuItem moColoredStripsAsIs;
        private System .Windows .Forms .ToolStripSeparator toolStripSeparator4;
        private System .Windows .Forms .ToolStripMenuItem miBarchartOnWhite;
        private System .Windows .Forms .ToolStripMenuItem miBarchartAsIs;
        private System .Windows .Forms .ToolStripMenuItem miFullWhiteOnWhite;
        private System .Windows .Forms .ToolStripMenuItem miFullColorsOnWhite;
        private System .Windows .Forms .ToolStripMenuItem miDeleteBarChart;
        private System .Windows .Forms .ToolStripMenuItem miFullAsIs;
        private System .Windows .Forms .ToolStripMenuItem miFlipScale;
        private System .Windows .Forms .ToolStripMenuItem miHideSCale;
        private System .Windows .Forms .ToolStripMenuItem miModifyScale;
        private System .Windows .Forms .ToolStripSeparator toolStripSeparator6;
        private System .Windows .Forms .ToolStripMenuItem miHideScaleComments;
        private System .Windows .Forms .ToolStripMenuItem miUnveilScaleComments;
        private System .Windows .Forms .ToolStripMenuItem miFlipDrawingDirection;
        private System .Windows .Forms .ToolStripMenuItem miDeleteComment;
        private System .Windows .Forms .ToolStripMenuItem miHideComment;
        private System .Windows .Forms .ToolStripMenuItem miModifyComment;
        private System .Windows .Forms .ToolStripSeparator toolStripSeparator8;
        private System .Windows .Forms .ToolStripMenuItem miSwitchRotationAngle;
        private System .Windows .Forms .ToolStripMenuItem miIntoClipboardWhiteOnWhite;
        private System .Windows .Forms .ToolStripMenuItem miIntoClipboardColorsOnWhite;
        private System .Windows .Forms .ToolStripMenuItem miIntoClipboardAsIs;
        private System .Windows .Forms .ToolStripSeparator toolStripSeparator5;
        private System .Windows .Forms .ToolStripMenuItem miRotateClockwise;
        private System .Windows .Forms .ToolStripMenuItem miRotateCounterclock;
    }
}

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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions