コード例 #1
0
        private void btnJob_Click(object sender, System.EventArgs e)
        {
            //招聘会按钮
            UltraButton btn = (UltraButton)sender;
            Job         job = (Job)btn.Tag;

            DispShow(job);
        }
コード例 #2
0
        /// <summary>
        /// Handles the Click event of the Category buttons.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
        private void CategoryButton_Click(object sender, EventArgs e)
        {
            UltraButton button = sender as UltraButton;

            if (button != null)
            {
                // Activate the tab that corresponds to the clicked button.
                tcMain.SelectedTab = tcMain.Tabs[button.Tag as string];
            }
        }
コード例 #3
0
        private void btnShow_Click(object sender, System.EventArgs e)
        {
            //展厅座位显示
            foreach (Control ctrl in this.Controls)
            {
                if (ctrl is UltraGroupBox)
                {
                    ctrl.Visible = false;
                }
            }
            ugbInfoDisp.Visible = true;
            //ugbSignIn.Visible = true;
            UltraButton btn  = (UltraButton)sender;
            Show        show = (Show)btn.Tag;

            LoadPanel(show);
        }
コード例 #4
0
        /// <summary>
        /// Handles the click event of both this.btnOverview and this.btnCategory. This allows the
        /// user to choose which chart is displayed.
        /// </summary>
        private void btnChartType_Click(object sender, EventArgs e)
        {
            // Select the appropriate tab based on which button was clicked.
            // The tab control is in Wizard mode, so there is no UI. So these two buttons
            // serve as the only way for the user to change tabs.
            //
            UltraButton button = (UltraButton)sender;

            if (button == this.btnOverview)
            {
                this.SelectTab(ChartType.Overview);
            }
            else
            {
                this.SelectTab(ChartType.Category);
            }
        }
コード例 #5
0
        private void CreateNewButton(string key)
        {
            // Create a new button with the appropriate appearance.
            UltraButton button = new UltraButton()
            {
                ButtonStyle   = Infragistics.Win.UIElementButtonStyle.Office2013Button,
                DrawFilter    = this,
                ImageSize     = new System.Drawing.Size(200, 150),
                Margin        = new System.Windows.Forms.Padding(20),
                ShowFocusRect = false,
                ShowOutline   = false,
                Size          = new Size(250, 225),
                Tag           = key,
                UseOsThemes   = Infragistics.Win.DefaultableBoolean.False,
            };


            key         = (string.IsNullOrEmpty(key)) ? "BlankDocument" : key.Replace(".xlsx", string.Empty).Split('.').Last();
            button.Text = key;
            Infragistics.Win.Appearance appearance = new Infragistics.Win.Appearance()
            {
                ImageHAlign = HAlign.Center,
                ImageVAlign = VAlign.Middle,
                TextHAlign  = HAlign.Left,
                TextVAlign  = VAlign.Bottom,
            };
            using (Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(string.Format("IGExcel.Images.{0}.png", key)))
            {
                if (stream != null)
                {
                    Image image = Image.FromStream(stream);
                    appearance.Image = image;
                }
            }
            button.Appearance = appearance;

            // Add the button to the FlowLayoutPanel
            this.flowLayoutPanel1.Controls.Add(button);

            // Hook up the event handler
            button.Click += (sender, args) =>
            {
                this.CreateWorkbook(((UltraButton)sender).Tag as string);
            };
        }
コード例 #6
0
ファイル: FrmMessageBox.cs プロジェクト: eldersontc/soft-erp
 public void MakeStyleConfirmation() {
     base.Text = "Confirmación";
     base.Size = new System.Drawing.Size(225, 150);
     UltraLabel LabelMsg = new UltraLabel();
     LabelMsg.Text = "¿ Seguro de Continuar ?";
     LabelMsg.Location = new System.Drawing.Point(35, 10);
     LabelMsg.Size = new System.Drawing.Size(160, 25);
     LabelMsg.Appearance.BackColor = System.Drawing.Color.Transparent;
     UltraButton ButtonAcept = new UltraButton();
     ButtonAcept.Text = "Si";
     ButtonAcept.Location = new System.Drawing.Point(20, 40);
     ButtonAcept.Click += ButtonAcept_Click;
     UltraButton ButtonCancel = new UltraButton();
     ButtonCancel.Text = "No";
     ButtonCancel.Location = new System.Drawing.Point(100, 40);
     ButtonCancel.Click += ButtonCancel_Click;
     ugbMessageBox.Controls.Add(LabelMsg);
     ugbMessageBox.Controls.Add(ButtonAcept);
     ugbMessageBox.Controls.Add(ButtonCancel);
 }
コード例 #7
0
ファイル: FrmMessageBox.cs プロジェクト: eldersontc/soft-erp
        public void MakeStyleConfirmation()
        {
            base.Text = "Confirmación";
            base.Size = new System.Drawing.Size(225, 150);
            UltraLabel LabelMsg = new UltraLabel();

            LabelMsg.Text                 = "¿ Seguro de Continuar ?";
            LabelMsg.Location             = new System.Drawing.Point(35, 10);
            LabelMsg.Size                 = new System.Drawing.Size(160, 25);
            LabelMsg.Appearance.BackColor = System.Drawing.Color.Transparent;
            UltraButton ButtonAcept = new UltraButton();

            ButtonAcept.Text     = "Si";
            ButtonAcept.Location = new System.Drawing.Point(20, 40);
            ButtonAcept.Click   += ButtonAcept_Click;
            UltraButton ButtonCancel = new UltraButton();

            ButtonCancel.Text     = "No";
            ButtonCancel.Location = new System.Drawing.Point(100, 40);
            ButtonCancel.Click   += ButtonCancel_Click;
            ugbMessageBox.Controls.Add(LabelMsg);
            ugbMessageBox.Controls.Add(ButtonAcept);
            ugbMessageBox.Controls.Add(ButtonCancel);
        }
コード例 #8
0
ファイル: UVSvest.cs プロジェクト: Sobot/InternetTim
        private void InitializeComponent()
        {
            Infragistics.Win.Appearance appearance = new Infragistics.Win.Appearance();
            PaintElement        element            = new PaintElement();
            BarChartAppearance  appearance2        = new BarChartAppearance();
            ChartTextAppearance item   = new ChartTextAppearance();
            GradientEffect      effect = new GradientEffect();

            this.tableLayoutPanel1 = new TableLayoutPanel();
            this.ultraButton1      = new UltraButton();
            this.ultraChart1       = new UltraChart();
            this.panel1            = new Panel();
            this.pictureBox2       = new PictureBox();
            this.pictureBox1       = new PictureBox();
            this.backgroundWorker1 = new BackgroundWorker();
            this.tableLayoutPanel1.SuspendLayout();
            this.ultraChart1.BeginInit();
            this.panel1.SuspendLayout();
            ((ISupportInitialize)this.pictureBox2).BeginInit();
            ((ISupportInitialize)this.pictureBox1).BeginInit();
            base.SuspendLayout();
            this.tableLayoutPanel1.BackColor   = Color.Silver;
            this.tableLayoutPanel1.ColumnCount = 4;
            this.tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 5f));
            this.tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 320f));
            this.tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100f));
            this.tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 6f));
            this.tableLayoutPanel1.Controls.Add(this.ultraButton1, 2, 1);
            this.tableLayoutPanel1.Controls.Add(this.ultraChart1, 2, 2);
            this.tableLayoutPanel1.Controls.Add(this.panel1, 1, 1);
            this.tableLayoutPanel1.Dock     = DockStyle.Fill;
            this.tableLayoutPanel1.Location = new Point(0, 0);
            this.tableLayoutPanel1.Margin   = new Padding(0);
            this.tableLayoutPanel1.Name     = "tableLayoutPanel1";
            this.tableLayoutPanel1.RowCount = 4;
            this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 5f));
            this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 50f));
            this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 100f));
            this.tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, 5f));
            this.tableLayoutPanel1.Size     = new Size(0x45d, 270);
            this.tableLayoutPanel1.TabIndex = 0;
            appearance.BackColor            = Color.FromArgb(0xc0, 0xc0, 0xff);
            appearance.BackColor2           = Color.White;
            appearance.BackGradientStyle    = Infragistics.Win.GradientStyle.Vertical;
            this.ultraButton1.Appearance    = appearance;
            this.ultraButton1.Dock          = DockStyle.Fill;
            this.ultraButton1.Font          = new Font("Arial", 18f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.ultraButton1.Location      = new Point(0x148, 8);
            this.ultraButton1.Name          = "ultraButton1";
            this.ultraButton1.Size          = new Size(780, 0x2c);
            this.ultraButton1.TabIndex      = 1;
            this.ultraButton1.Text          = "NASLOV";
            this.ultraButton1.UseOsThemes   = DefaultableBoolean.False;
            this.ultraChart1.ChartType      = ChartType.BarChart;
            this.ultraChart1.Axis.BackColor = Color.FromArgb(0xff, 0xf8, 220);
            element.ElementType             = PaintElementType.None;
            element.Fill                                                 = Color.FromArgb(0xff, 0xf8, 220);
            this.ultraChart1.Axis.PE                                     = element;
            this.ultraChart1.Axis.X.Extent                               = 20;
            this.ultraChart1.Axis.X.Labels.Font                          = new Font("Verdana", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.ultraChart1.Axis.X.Labels.FontColor                     = Color.Red;
            this.ultraChart1.Axis.X.Labels.HorizontalAlign               = StringAlignment.Far;
            this.ultraChart1.Axis.X.Labels.ItemFormatString              = "<DATA_VALUE:0>";
            this.ultraChart1.Axis.X.Labels.Layout.Behavior               = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X.Labels.Orientation                   = TextOrientation.Horizontal;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.Font             = new Font("Verdana", 20.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            this.ultraChart1.Axis.X.Labels.SeriesLabels.FontColor        = Color.DimGray;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.FormatString     = "";
            this.ultraChart1.Axis.X.Labels.SeriesLabels.HorizontalAlign  = StringAlignment.Far;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.Layout.Behavior  = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.Orientation      = TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X.Labels.SeriesLabels.VerticalAlign    = StringAlignment.Center;
            this.ultraChart1.Axis.X.Labels.VerticalAlign                 = StringAlignment.Center;
            this.ultraChart1.Axis.X.LineThickness                        = 1;
            this.ultraChart1.Axis.X.MajorGridLines.AlphaLevel            = 0xff;
            this.ultraChart1.Axis.X.MajorGridLines.Color                 = Color.Gainsboro;
            this.ultraChart1.Axis.X.MajorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.ultraChart1.Axis.X.MajorGridLines.Visible               = true;
            this.ultraChart1.Axis.X.MinorGridLines.AlphaLevel            = 0xff;
            this.ultraChart1.Axis.X.MinorGridLines.Color                 = Color.LightGray;
            this.ultraChart1.Axis.X.MinorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.ultraChart1.Axis.X.MinorGridLines.Visible               = false;
            this.ultraChart1.Axis.X.RangeMax                             = 100.0;
            this.ultraChart1.Axis.X.RangeType                            = AxisRangeType.Custom;
            this.ultraChart1.Axis.X.TickmarkInterval                     = 10.0;
            this.ultraChart1.Axis.X.TickmarkStyle                        = AxisTickStyle.Smart;
            this.ultraChart1.Axis.X.Visible                              = true;
            this.ultraChart1.Axis.X2.Labels.Font                         = new Font("Verdana", 7f);
            this.ultraChart1.Axis.X2.Labels.FontColor                    = Color.Gray;
            this.ultraChart1.Axis.X2.Labels.HorizontalAlign              = StringAlignment.Far;
            this.ultraChart1.Axis.X2.Labels.ItemFormatString             = "<DATA_VALUE:00.##>";
            this.ultraChart1.Axis.X2.Labels.Layout.Behavior              = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X2.Labels.Orientation                  = TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Font            = new Font("Verdana", 7f);
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.FontColor       = Color.Gray;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.FormatString    = "";
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.HorizontalAlign = StringAlignment.Far;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.Orientation     = TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.X2.Labels.SeriesLabels.VerticalAlign   = StringAlignment.Center;
            this.ultraChart1.Axis.X2.Labels.VerticalAlign                = StringAlignment.Center;
            this.ultraChart1.Axis.X2.Labels.Visible                      = false;
            this.ultraChart1.Axis.X2.LineThickness                       = 1;
            this.ultraChart1.Axis.X2.MajorGridLines.AlphaLevel           = 0xff;
            this.ultraChart1.Axis.X2.MajorGridLines.Color                = Color.Gainsboro;
            this.ultraChart1.Axis.X2.MajorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.ultraChart1.Axis.X2.MajorGridLines.Visible              = true;
            this.ultraChart1.Axis.X2.MinorGridLines.AlphaLevel           = 0xff;
            this.ultraChart1.Axis.X2.MinorGridLines.Color                = Color.LightGray;
            this.ultraChart1.Axis.X2.MinorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.ultraChart1.Axis.X2.MinorGridLines.Visible              = false;
            this.ultraChart1.Axis.X2.TickmarkInterval                    = 40.0;
            this.ultraChart1.Axis.X2.TickmarkStyle                       = AxisTickStyle.Smart;
            this.ultraChart1.Axis.X2.Visible                             = false;
            this.ultraChart1.Axis.Y.Extent                               = 400;
            this.ultraChart1.Axis.Y.Labels.Font                          = new Font("Verdana", 24f, FontStyle.Bold, GraphicsUnit.Point, 0);
            this.ultraChart1.Axis.Y.Labels.HorizontalAlign               = StringAlignment.Far;
            this.ultraChart1.Axis.Y.Labels.ItemFormatString              = "<ITEM_LABEL>";
            this.ultraChart1.Axis.Y.Labels.Layout.Behavior               = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y.Labels.Orientation                   = TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.HorizontalAlign  = StringAlignment.Center;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Layout.Behavior  = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Orientation      = TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.VerticalAlign    = StringAlignment.Center;
            this.ultraChart1.Axis.Y.Labels.SeriesLabels.Visible          = false;
            this.ultraChart1.Axis.Y.Labels.VerticalAlign                 = StringAlignment.Center;
            this.ultraChart1.Axis.Y.LineThickness                        = 1;
            this.ultraChart1.Axis.Y.MajorGridLines.AlphaLevel            = 0xff;
            this.ultraChart1.Axis.Y.MajorGridLines.Color                 = Color.Gainsboro;
            this.ultraChart1.Axis.Y.MajorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y.MajorGridLines.Visible               = true;
            this.ultraChart1.Axis.Y.MinorGridLines.AlphaLevel            = 0xff;
            this.ultraChart1.Axis.Y.MinorGridLines.Color                 = Color.LightGray;
            this.ultraChart1.Axis.Y.MinorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y.MinorGridLines.Visible               = false;
            this.ultraChart1.Axis.Y.TickmarkStyle                        = AxisTickStyle.Smart;
            this.ultraChart1.Axis.Y.Visible                              = true;
            this.ultraChart1.Axis.Y2.Labels.Font                         = new Font("Verdana", 7f);
            this.ultraChart1.Axis.Y2.Labels.FontColor                    = Color.Gray;
            this.ultraChart1.Axis.Y2.Labels.HorizontalAlign              = StringAlignment.Near;
            this.ultraChart1.Axis.Y2.Labels.ItemFormatString             = "<ITEM_LABEL>";
            this.ultraChart1.Axis.Y2.Labels.Layout.Behavior              = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y2.Labels.Orientation                  = TextOrientation.Horizontal;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Font            = new Font("Verdana", 7f);
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.FontColor       = Color.Gray;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = StringAlignment.Center;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.Orientation     = TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.Y2.Labels.SeriesLabels.VerticalAlign   = StringAlignment.Center;
            this.ultraChart1.Axis.Y2.Labels.VerticalAlign                = StringAlignment.Center;
            this.ultraChart1.Axis.Y2.Labels.Visible                      = false;
            this.ultraChart1.Axis.Y2.LineThickness                       = 1;
            this.ultraChart1.Axis.Y2.MajorGridLines.AlphaLevel           = 0xff;
            this.ultraChart1.Axis.Y2.MajorGridLines.Color                = Color.Gainsboro;
            this.ultraChart1.Axis.Y2.MajorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y2.MajorGridLines.Visible              = true;
            this.ultraChart1.Axis.Y2.MinorGridLines.AlphaLevel           = 0xff;
            this.ultraChart1.Axis.Y2.MinorGridLines.Color                = Color.LightGray;
            this.ultraChart1.Axis.Y2.MinorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.ultraChart1.Axis.Y2.MinorGridLines.Visible              = false;
            this.ultraChart1.Axis.Y2.TickmarkStyle                       = AxisTickStyle.Smart;
            this.ultraChart1.Axis.Y2.Visible                             = false;
            this.ultraChart1.Axis.Z.Labels.Font                          = new Font("Verdana", 7f);
            this.ultraChart1.Axis.Z.Labels.FontColor                     = Color.DimGray;
            this.ultraChart1.Axis.Z.Labels.HorizontalAlign               = StringAlignment.Near;
            this.ultraChart1.Axis.Z.Labels.ItemFormatString              = "";
            this.ultraChart1.Axis.Z.Labels.Layout.Behavior               = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z.Labels.Orientation                   = TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Font             = new Font("Verdana", 7f);
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.FontColor        = Color.DimGray;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.HorizontalAlign  = StringAlignment.Near;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Layout.Behavior  = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.Orientation      = TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z.Labels.SeriesLabels.VerticalAlign    = StringAlignment.Center;
            this.ultraChart1.Axis.Z.Labels.VerticalAlign                 = StringAlignment.Center;
            this.ultraChart1.Axis.Z.Labels.Visible                       = false;
            this.ultraChart1.Axis.Z.LineThickness                        = 1;
            this.ultraChart1.Axis.Z.MajorGridLines.AlphaLevel            = 0xff;
            this.ultraChart1.Axis.Z.MajorGridLines.Color                 = Color.Gainsboro;
            this.ultraChart1.Axis.Z.MajorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z.MajorGridLines.Visible               = true;
            this.ultraChart1.Axis.Z.MinorGridLines.AlphaLevel            = 0xff;
            this.ultraChart1.Axis.Z.MinorGridLines.Color                 = Color.LightGray;
            this.ultraChart1.Axis.Z.MinorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z.MinorGridLines.Visible               = false;
            this.ultraChart1.Axis.Z.TickmarkStyle                        = AxisTickStyle.Smart;
            this.ultraChart1.Axis.Z.Visible                              = false;
            this.ultraChart1.Axis.Z2.Labels.Font                         = new Font("Verdana", 7f);
            this.ultraChart1.Axis.Z2.Labels.FontColor                    = Color.Gray;
            this.ultraChart1.Axis.Z2.Labels.HorizontalAlign              = StringAlignment.Near;
            this.ultraChart1.Axis.Z2.Labels.ItemFormatString             = "";
            this.ultraChart1.Axis.Z2.Labels.Layout.Behavior              = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z2.Labels.Orientation                  = TextOrientation.Horizontal;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Font            = new Font("Verdana", 7f);
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.FontColor       = Color.Gray;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = StringAlignment.Near;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Layout.Behavior = AxisLabelLayoutBehaviors.Auto;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.Orientation     = TextOrientation.VerticalLeftFacing;
            this.ultraChart1.Axis.Z2.Labels.SeriesLabels.VerticalAlign   = StringAlignment.Center;
            this.ultraChart1.Axis.Z2.Labels.VerticalAlign                = StringAlignment.Center;
            this.ultraChart1.Axis.Z2.Labels.Visible                      = false;
            this.ultraChart1.Axis.Z2.LineThickness                       = 1;
            this.ultraChart1.Axis.Z2.MajorGridLines.AlphaLevel           = 0xff;
            this.ultraChart1.Axis.Z2.MajorGridLines.Color                = Color.Gainsboro;
            this.ultraChart1.Axis.Z2.MajorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z2.MajorGridLines.Visible              = true;
            this.ultraChart1.Axis.Z2.MinorGridLines.AlphaLevel           = 0xff;
            this.ultraChart1.Axis.Z2.MinorGridLines.Color                = Color.LightGray;
            this.ultraChart1.Axis.Z2.MinorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.ultraChart1.Axis.Z2.MinorGridLines.Visible              = false;
            this.ultraChart1.Axis.Z2.TickmarkStyle                       = AxisTickStyle.Smart;
            this.ultraChart1.Axis.Z2.Visible                             = false;
            this.ultraChart1.BackgroundImageLayout                       = ImageLayout.Center;
            item.ChartTextFont                                           = new Font("Arial", 20.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
            item.Column           = -2;
            item.HorizontalAlign  = StringAlignment.Far;
            item.ItemFormatString = "<DATA_VALUE:0>";
            item.Row     = -2;
            item.Visible = true;
            appearance2.ChartText.Add(item);
            this.ultraChart1.BarChart = appearance2;
            this.ultraChart1.ColorModel.AlphaLevel = 150;
            this.ultraChart1.ColorModel.ColorBegin = Color.Pink;
            this.ultraChart1.ColorModel.ColorEnd   = Color.DarkRed;
            this.ultraChart1.ColorModel.ModelStyle = ColorModels.CustomLinear;
            this.ultraChart1.Dock = DockStyle.Fill;
            this.ultraChart1.Effects.Effects.Add(effect);
            this.ultraChart1.EmptyChartText                 = "Učitavanje podataka...";
            this.ultraChart1.Legend.Location                = LegendLocation.Left;
            this.ultraChart1.Location                       = new Point(0x148, 0x3a);
            this.ultraChart1.Name                           = "ultraChart1";
            this.ultraChart1.Size                           = new Size(780, 0xcc);
            this.ultraChart1.TabIndex                       = 2;
            this.ultraChart1.Tooltips.HighlightFillColor    = Color.DimGray;
            this.ultraChart1.Tooltips.HighlightOutlineColor = Color.DarkGray;
            this.panel1.Controls.Add(this.pictureBox2);
            this.panel1.Controls.Add(this.pictureBox1);
            this.panel1.Dock     = DockStyle.Fill;
            this.panel1.Location = new Point(5, 5);
            this.panel1.Margin   = new Padding(0);
            this.panel1.Name     = "panel1";
            this.tableLayoutPanel1.SetRowSpan(this.panel1, 2);
            this.panel1.Size                           = new Size(320, 260);
            this.panel1.TabIndex                       = 3;
            this.pictureBox2.BackColor                 = Color.Sienna;
            this.pictureBox2.BackgroundImageLayout     = ImageLayout.Stretch;
            this.pictureBox2.BorderStyle               = BorderStyle.FixedSingle;
            this.pictureBox2.Location                  = new Point(0, 0);
            this.pictureBox2.Name                      = "pictureBox2";
            this.pictureBox2.Size                      = new Size(100, 50);
            this.pictureBox2.TabIndex                  = 1;
            this.pictureBox2.TabStop                   = false;
            this.pictureBox1.BackColor                 = Color.Maroon;
            this.pictureBox1.BackgroundImageLayout     = ImageLayout.Stretch;
            this.pictureBox1.BorderStyle               = BorderStyle.Fixed3D;
            this.pictureBox1.Dock                      = DockStyle.Fill;
            this.pictureBox1.Location                  = new Point(0, 0);
            this.pictureBox1.Name                      = "pictureBox1";
            this.pictureBox1.Size                      = new Size(320, 260);
            this.pictureBox1.TabIndex                  = 0;
            this.pictureBox1.TabStop                   = false;
            this.backgroundWorker1.DoWork             += new DoWorkEventHandler(this.backgroundWorker1_DoWork);
            this.backgroundWorker1.RunWorkerCompleted += new RunWorkerCompletedEventHandler(this.backgroundWorker1_RunWorkerCompleted);
            base.AutoScaleDimensions                   = new SizeF(6f, 13f);
            base.AutoScaleMode                         = AutoScaleMode.Font;
            base.Controls.Add(this.tableLayoutPanel1);
            base.Margin = new Padding(10, 15, 3, 0);
            base.Name   = "UVSvest";
            base.Size   = new Size(0x45d, 270);
            this.tableLayoutPanel1.ResumeLayout(false);
            this.ultraChart1.EndInit();
            this.panel1.ResumeLayout(false);
            ((ISupportInitialize)this.pictureBox2).EndInit();
            ((ISupportInitialize)this.pictureBox1).EndInit();
            base.ResumeLayout(false);
        }
コード例 #9
0
        private void DispShow(Job job)
        {
            //显示展厅
            foreach (Control ctrl in this.Controls)
            {
                if (ctrl is UltraGroupBox)
                {
                    ctrl.Visible = false;
                }
            }
            ms             = new MemberSeat(Form1.pMember.ToTable());
            ms.cnnID       = job.cnnJobID;
            ms.cnvcJobName = job.cnvcJobName;

            int iHeight = 0;

            this.ugbShow.Visible = true;
            this.ugbShow.Text    = "请选择招聘会展厅";
            this.ugbShow.Font    = new Font("宋体", 40);
            this.ugbShow.Width   = 800;
            this.ugbShow.Appearance.BackColor = Color.Transparent;
            this.ugbShow.Controls.Clear();
            UltraButton btnReturn = new UltraButton();

            btnReturn.Name   = "jobReturn";
            btnReturn.Text   = "返回";
            btnReturn.Height = 100;
            btnReturn.Font   = ugbShow.Font;
            btnReturn.Dock   = DockStyle.Top;
            btnReturn.Click += new EventHandler(btnShowReturn_Click);
            ugbShow.Controls.Add(btnReturn);

            iHeight += 100;

            string    strSql = "select * from tbShow where cnnJobID=" + job.cnnJobID.ToString() + " order by cnnShowID desc";
            DataTable dtShow = Helper.Query(strSql);

            foreach (DataRow drShow in dtShow.Rows)
            {
                Show      show       = new Show(drShow);
                string    strSeatSql = "select cnvcSeat from tbShowSeat where cnnJobID=" + job.cnnJobID.ToString() + " and cnvcFloor=" + show.cnnShowID.ToString() + " and cnvcState is null and cnvcSeat is not null";
                DataTable dtSeat     = Helper.Query(strSeatSql);
                if (dtSeat.Rows.Count > 0)
                {
                    UltraButton btn = new UltraButton();
                    btn.Name   = "show" + show.cnnShowID;
                    btn.Text   = show.cnvcShowName;
                    btn.Tag    = show;
                    btn.Height = 100;
                    btn.Font   = ugbJob.Font;
                    btn.Dock   = DockStyle.Top;
                    btn.Click += new EventHandler(btnShow_Click);
                    ugbShow.Controls.Add(btn);

                    iHeight += 100;
                }
            }
            this.ugbShow.Height = iHeight + 100;
            this.ugbShow.Top    = (this.Height - this.ugbShow.Height) / 2;
            this.ugbShow.Left   = (this.Width - this.ugbShow.Width) / 2;
        }
コード例 #10
0
        private void DispJob()
        {
            //显示招聘会
            foreach (Control ctrl in this.Controls)
            {
                if (ctrl is UltraGroupBox)
                {
                    ctrl.Visible = false;
                }
            }
            int iHeight = 0;

            this.ugbJob.Visible = true;
            this.ugbJob.Text    = "请选择招聘会";
            this.ugbJob.Font    = new Font("宋体", 40);
            this.ugbJob.Width   = 800;
            this.ugbJob.Appearance.BackColor = Color.Transparent;
            this.ugbJob.Controls.Clear();
            UltraButton btnReturn = new UltraButton();

            btnReturn.Name   = "jobReturn";
            btnReturn.Text   = "返回";
            btnReturn.Height = 100;
            btnReturn.Font   = ugbJob.Font;
            btnReturn.Dock   = DockStyle.Top;
            btnReturn.Click += new EventHandler(btnJobReturn_Click);
            ugbJob.Controls.Add(btnReturn);

            iHeight += 100;

            string    strSql = "select * from tbJob where cndBeginDate<getdate() and cndEndDate>getdate() order by cndBeginDate desc";
            DataTable dtJob  = Helper.Query(strSql);
            int       iCount = 0;

            foreach (DataRow drJob in dtJob.Rows)
            {
                Job job = new Job(drJob);
                //if (Form1.constApp.htMemberSeats.Contains(Form1.pMember.cnvcMemberRight))
                //{
                //    DataTable dtSeats = Helper.Query("select count(*) from tbMemberSeat where cnvcMemberCardNo='"+Form1.pMember.cnvcMemberCardNo+"' and cnvcState='"+ConstApp.Show_Seat_State_SignIn+"' and cnnID="+job.cnnJobID.ToString());
                //    string strBookSeats = Form1.constApp.htMemberSeats[Form1.pMember.cnvcMemberRight].ToString();
                //    string strBookedSeats = dtSeats.Rows[0][0].ToString();
                //    if (strBookedSeats != ConstApp.Free_Time_NoLimit)
                //    {
                //        int iBookSeats = int.Parse(strBookSeats);
                //        int iBookedSeats = int.Parse(strBookedSeats);
                //        if (iBookedSeats >= iBookSeats)
                //        {
                //            //btnReturn.Text = "展位签到,已到限制展位数!";
                //            //DispError("展位签到,已到限制展位数!");
                //            continue;
                //            //throw new BusinessException("展位签到","已到限制展位数!");
                //        }
                //    }
                //}
                iCount++;


                UltraButton btn = new UltraButton();
                btn.Name   = "job" + job.cnnJobID;
                btn.Text   = job.cnvcJobName;
                btn.Tag    = job;
                btn.Height = 100;
                btn.Font   = ugbJob.Font;
                btn.Dock   = DockStyle.Top;
                btn.Click += new EventHandler(btnJob_Click);
                ugbJob.Controls.Add(btn);

                iHeight += 100;
            }
            if (iCount == 0)
            {
                UltraButton btn = new UltraButton();
                btn.Name = "joberror";
                btn.Text = "展位签到, 展位已经签到!";
                //btn.Tag = job;
                btn.Height = 100;
                btn.Font   = ugbJob.Font;
                btn.Dock   = DockStyle.Top;
                //btn.Click += new EventHandler(btnJob_Click);
                ugbJob.Controls.Add(btn);

                iHeight += 100;
            }
            this.ugbJob.Height = iHeight + 100;
            this.ugbJob.Top    = (this.Height - this.ugbJob.Height) / 2;
            this.ugbJob.Left   = (this.Width - this.ugbJob.Width) / 2;
        }
コード例 #11
0
ファイル: FrmGraph.cs プロジェクト: windygu/TEPLOMER
        private void InitializeComponent()
        {
            this.components = (IContainer) new Container();
            ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(FrmGraph));

            this.graph    = new UltraChart();
            this.btnPrint = new UltraButton();
            this.ultraPrintPreviewDialog1 = new UltraPrintPreviewDialog(this.components);
            this.graph.BeginInit();
            this.SuspendLayout();
            this.graph.Axis.BackColor                              = Color.FromArgb((int)byte.MaxValue, 248, 220);
            this.graph.Axis.X.Extent                               = 85;
            this.graph.Axis.X.Labels.Flip                          = true;
            this.graph.Axis.X.Labels.HorizontalAlign               = StringAlignment.Near;
            this.graph.Axis.X.Labels.ItemFormatString              = "<ITEM_LABEL>";
            this.graph.Axis.X.Labels.Orientation                   = TextOrientation.Custom;
            this.graph.Axis.X.Labels.OrientationAngle              = 230;
            this.graph.Axis.X.Labels.SeriesLabels.FormatString     = "";
            this.graph.Axis.X.Labels.SeriesLabels.HorizontalAlign  = StringAlignment.Near;
            this.graph.Axis.X.Labels.SeriesLabels.Orientation      = TextOrientation.Horizontal;
            this.graph.Axis.X.Labels.SeriesLabels.VerticalAlign    = StringAlignment.Center;
            this.graph.Axis.X.Labels.VerticalAlign                 = StringAlignment.Center;
            this.graph.Axis.X.MajorGridLines.AlphaLevel            = byte.MaxValue;
            this.graph.Axis.X.MajorGridLines.Color                 = Color.Gainsboro;
            this.graph.Axis.X.MajorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.graph.Axis.X.MajorGridLines.Visible               = true;
            this.graph.Axis.X.MinorGridLines.AlphaLevel            = byte.MaxValue;
            this.graph.Axis.X.MinorGridLines.Color                 = Color.LightGray;
            this.graph.Axis.X.MinorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.graph.Axis.X.MinorGridLines.Visible               = false;
            this.graph.Axis.X.ScrollScale.Height                   = 5;
            this.graph.Axis.X.ScrollScale.Visible                  = true;
            this.graph.Axis.X.ScrollScale.Width                    = 10;
            this.graph.Axis.X.TickmarkInterval                     = 1.0;
            this.graph.Axis.X.TickmarkIntervalType                 = AxisIntervalType.Days;
            this.graph.Axis.X.TickmarkStyle                        = AxisTickStyle.Smart;
            this.graph.Axis.X.Visible                              = true;
            this.graph.Axis.X2.Labels.HorizontalAlign              = StringAlignment.Far;
            this.graph.Axis.X2.Labels.ItemFormatString             = "<ITEM_LABEL>";
            this.graph.Axis.X2.Labels.Orientation                  = TextOrientation.VerticalLeftFacing;
            this.graph.Axis.X2.Labels.SeriesLabels.FormatString    = "";
            this.graph.Axis.X2.Labels.SeriesLabels.HorizontalAlign = StringAlignment.Far;
            this.graph.Axis.X2.Labels.SeriesLabels.Orientation     = TextOrientation.VerticalLeftFacing;
            this.graph.Axis.X2.Labels.SeriesLabels.VerticalAlign   = StringAlignment.Center;
            this.graph.Axis.X2.Labels.VerticalAlign                = StringAlignment.Center;
            this.graph.Axis.X2.MajorGridLines.AlphaLevel           = byte.MaxValue;
            this.graph.Axis.X2.MajorGridLines.Color                = Color.Gainsboro;
            this.graph.Axis.X2.MajorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.graph.Axis.X2.MajorGridLines.Visible              = true;
            this.graph.Axis.X2.MinorGridLines.AlphaLevel           = byte.MaxValue;
            this.graph.Axis.X2.MinorGridLines.Color                = Color.LightGray;
            this.graph.Axis.X2.MinorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.graph.Axis.X2.MinorGridLines.Visible              = false;
            this.graph.Axis.X2.Visible                             = false;
            this.graph.Axis.Y.Extent                               = 60;
            this.graph.Axis.Y.Labels.HorizontalAlign               = StringAlignment.Far;
            this.graph.Axis.Y.Labels.ItemFormatString              = "<DATA_VALUE:00.##>";
            this.graph.Axis.Y.Labels.Orientation                   = TextOrientation.Horizontal;
            this.graph.Axis.Y.Labels.SeriesLabels.FormatString     = "";
            this.graph.Axis.Y.Labels.SeriesLabels.HorizontalAlign  = StringAlignment.Far;
            this.graph.Axis.Y.Labels.SeriesLabels.Orientation      = TextOrientation.Horizontal;
            this.graph.Axis.Y.Labels.SeriesLabels.VerticalAlign    = StringAlignment.Center;
            this.graph.Axis.Y.Labels.VerticalAlign                 = StringAlignment.Center;
            this.graph.Axis.Y.MajorGridLines.AlphaLevel            = byte.MaxValue;
            this.graph.Axis.Y.MajorGridLines.Color                 = Color.Gainsboro;
            this.graph.Axis.Y.MajorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.graph.Axis.Y.MajorGridLines.Visible               = true;
            this.graph.Axis.Y.MinorGridLines.AlphaLevel            = byte.MaxValue;
            this.graph.Axis.Y.MinorGridLines.Color                 = Color.LightGray;
            this.graph.Axis.Y.MinorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.graph.Axis.Y.MinorGridLines.Visible               = false;
            this.graph.Axis.Y.RangeMax                             = 200.0;
            this.graph.Axis.Y.ScrollScale.Height                   = 5;
            this.graph.Axis.Y.ScrollScale.Visible                  = true;
            this.graph.Axis.Y.ScrollScale.Width                    = 10;
            this.graph.Axis.Y.TickmarkInterval                     = 40.0;
            this.graph.Axis.Y.TickmarkStyle                        = AxisTickStyle.Smart;
            this.graph.Axis.Y.Visible                              = true;
            this.graph.Axis.Y2.Labels.HorizontalAlign              = StringAlignment.Near;
            this.graph.Axis.Y2.Labels.ItemFormatString             = "<DATA_VALUE:00.##>";
            this.graph.Axis.Y2.Labels.Orientation                  = TextOrientation.Horizontal;
            this.graph.Axis.Y2.Labels.SeriesLabels.FormatString    = "";
            this.graph.Axis.Y2.Labels.SeriesLabels.HorizontalAlign = StringAlignment.Near;
            this.graph.Axis.Y2.Labels.SeriesLabels.Orientation     = TextOrientation.Horizontal;
            this.graph.Axis.Y2.Labels.SeriesLabels.VerticalAlign   = StringAlignment.Center;
            this.graph.Axis.Y2.Labels.VerticalAlign                = StringAlignment.Center;
            this.graph.Axis.Y2.MajorGridLines.AlphaLevel           = byte.MaxValue;
            this.graph.Axis.Y2.MajorGridLines.Color                = Color.Gainsboro;
            this.graph.Axis.Y2.MajorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.graph.Axis.Y2.MajorGridLines.Visible              = true;
            this.graph.Axis.Y2.MinorGridLines.AlphaLevel           = byte.MaxValue;
            this.graph.Axis.Y2.MinorGridLines.Color                = Color.LightGray;
            this.graph.Axis.Y2.MinorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.graph.Axis.Y2.MinorGridLines.Visible              = false;
            this.graph.Axis.Y2.Visible                             = false;
            this.graph.Axis.Z.Labels.HorizontalAlign               = StringAlignment.Near;
            this.graph.Axis.Z.Labels.ItemFormatString              = "";
            this.graph.Axis.Z.Labels.Orientation                   = TextOrientation.Horizontal;
            this.graph.Axis.Z.Labels.SeriesLabels.HorizontalAlign  = StringAlignment.Near;
            this.graph.Axis.Z.Labels.SeriesLabels.Orientation      = TextOrientation.Horizontal;
            this.graph.Axis.Z.Labels.SeriesLabels.VerticalAlign    = StringAlignment.Center;
            this.graph.Axis.Z.Labels.VerticalAlign                 = StringAlignment.Center;
            this.graph.Axis.Z.MajorGridLines.AlphaLevel            = byte.MaxValue;
            this.graph.Axis.Z.MajorGridLines.Color                 = Color.Gainsboro;
            this.graph.Axis.Z.MajorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.graph.Axis.Z.MajorGridLines.Visible               = true;
            this.graph.Axis.Z.MinorGridLines.AlphaLevel            = byte.MaxValue;
            this.graph.Axis.Z.MinorGridLines.Color                 = Color.LightGray;
            this.graph.Axis.Z.MinorGridLines.DrawStyle             = LineDrawStyle.Dot;
            this.graph.Axis.Z.MinorGridLines.Visible               = false;
            this.graph.Axis.Z.Visible                              = false;
            this.graph.Axis.Z2.Labels.HorizontalAlign              = StringAlignment.Near;
            this.graph.Axis.Z2.Labels.ItemFormatString             = "";
            this.graph.Axis.Z2.Labels.Orientation                  = TextOrientation.Horizontal;
            this.graph.Axis.Z2.Labels.SeriesLabels.HorizontalAlign = StringAlignment.Near;
            this.graph.Axis.Z2.Labels.SeriesLabels.Orientation     = TextOrientation.Horizontal;
            this.graph.Axis.Z2.Labels.SeriesLabels.VerticalAlign   = StringAlignment.Center;
            this.graph.Axis.Z2.Labels.VerticalAlign                = StringAlignment.Center;
            this.graph.Axis.Z2.MajorGridLines.AlphaLevel           = byte.MaxValue;
            this.graph.Axis.Z2.MajorGridLines.Color                = Color.Gainsboro;
            this.graph.Axis.Z2.MajorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.graph.Axis.Z2.MajorGridLines.Visible              = true;
            this.graph.Axis.Z2.MinorGridLines.AlphaLevel           = byte.MaxValue;
            this.graph.Axis.Z2.MinorGridLines.Color                = Color.LightGray;
            this.graph.Axis.Z2.MinorGridLines.DrawStyle            = LineDrawStyle.Dot;
            this.graph.Axis.Z2.MinorGridLines.Visible              = false;
            this.graph.Axis.Z2.Visible                             = false;
            this.graph.Border.CornerRadius                         = 5;
            this.graph.ChartType             = ChartType.LineChart;
            this.graph.ColorModel.AlphaLevel = (byte)150;
            this.graph.Data.EmptyStyle.LineStyle.DrawStyle = LineDrawStyle.Dash;
            this.graph.Data.SwapRowsAndColumns             = true;
            this.graph.Data.UseRowLabelsColumn             = true;
            this.graph.Dock                    = DockStyle.Fill;
            this.graph.EmptyChartText          = "Data Not Available.";
            this.graph.ForeColor               = SystemColors.ControlText;
            this.graph.Legend.Location         = LegendLocation.Bottom;
            this.graph.Legend.Margins.Bottom   = 0;
            this.graph.Legend.Margins.Left     = 0;
            this.graph.Legend.Margins.Right    = 0;
            this.graph.Legend.Margins.Top      = 0;
            this.graph.Legend.SpanPercentage   = 22;
            this.graph.Legend.Visible          = true;
            this.graph.Location                = new Point(0, 0);
            this.graph.Name                    = "graph";
            this.graph.Size                    = new Size(485, 384);
            this.graph.TabIndex                = 0;
            this.graph.TitleBottom.Visible     = false;
            this.graph.TitleTop.Visible        = false;
            this.graph.Tooltips.Font           = new Font("Microsoft Sans Serif", 7.8f);
            this.graph.Tooltips.FormatString   = "";
            this.graph.DataItemOver           += new DataItemOverEventHandler(this.graph_DataItemOver);
            this.btnPrint.Anchor               = AnchorStyles.Bottom | AnchorStyles.Right;
            this.btnPrint.Location             = new Point(435, 271);
            this.btnPrint.Name                 = "btnPrint";
            this.btnPrint.Size                 = new Size(38, 23);
            this.btnPrint.TabIndex             = 3;
            this.btnPrint.Text                 = "Print";
            this.btnPrint.Click               += new EventHandler(this.btnPrint_Click);
            this.ultraPrintPreviewDialog1.Name = "ultraPrintPreviewDialog1";
            this.AutoScaleDimensions           = new SizeF(6f, 13f);
            //this.AutoScaleMode = AutoScaleMode.Font;
            this.ClientSize = new Size(485, 384);
            this.Controls.Add((Control)this.btnPrint);
            this.Controls.Add((Control)this.graph);
            // this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon");
            this.Name          = "FrmGraph";
            this.ShowIcon      = false;
            this.ShowInTaskbar = false;
            this.Text          = "Graph";
            this.graph.EndInit();
            this.ResumeLayout(false);
        }
コード例 #12
0
ファイル: GUI.cs プロジェクト: ogirard/lyra2
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung. 
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
       System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GUI));
       Infragistics.Win.Appearance appearance1 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance15 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance2 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance13 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance7 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance9 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance4 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance5 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance3 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance14 = new Infragistics.Win.Appearance();
       Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
       this.tabControl1 = new System.Windows.Forms.TabControl();
       this.tabPage2 = new System.Windows.Forms.TabPage();
       this.searchSplitter = new System.Windows.Forms.SplitContainer();
       this.searchListBox = new Lyra2.LyraShell.SongListBox();
       this.label4 = new System.Windows.Forms.Label();
       this.songPreview3 = new Lyra2.LyraShell.SongPreview();
       this.panel4 = new System.Windows.Forms.Panel();
       this.sortCombo = new System.Windows.Forms.ComboBox();
       this.sortLabel = new System.Windows.Forms.Label();
       this.searchPaneTop = new System.Windows.Forms.Panel();
       this.pictureBox4 = new System.Windows.Forms.PictureBox();
       this.label2 = new System.Windows.Forms.Label();
       this.pictureBox1 = new System.Windows.Forms.PictureBox();
       this.mainSearchBox = new Lyra2.LyraShell.SearchTextBox();
       this.checkBox1 = new System.Windows.Forms.CheckBox();
       this.resultsLabel = new System.Windows.Forms.Label();
       this.panel1 = new Infragistics.Win.Misc.UltraPanel();
       this.ultraLabel1 = new Infragistics.Win.Misc.UltraLabel();
       this.textBox1 = new Lyra2.LyraShell.SearchTextBox();
       this.button7 = new Lyra2.LyraShell.LyraButtonControl();
       this.showSongBtn = new Lyra2.LyraShell.LyraButtonControl();
       this.tabPage1 = new System.Windows.Forms.TabPage();
       this.allSongsSplitter = new System.Windows.Forms.SplitContainer();
       this.allSongsListBox = new Lyra2.LyraShell.SongListBox();
       this.songPreview1 = new Lyra2.LyraShell.SongPreview();
       this.controlPaneRight = new Infragistics.Win.Misc.UltraPanel();
       this.songManagmentLabel = new Infragistics.Win.Misc.UltraLabel();
       this.button3 = new Lyra2.LyraShell.LyraButtonControl();
       this.button1 = new Lyra2.LyraShell.LyraButtonControl();
       this.button2 = new Lyra2.LyraShell.LyraButtonControl();
       this.button9 = new Lyra2.LyraShell.LyraButtonControl();
       this.tabPage3 = new System.Windows.Forms.TabPage();
       this.persListSplitter = new System.Windows.Forms.SplitContainer();
       this.personalListsListBox = new Lyra2.LyraShell.SongListBox();
       this.panel8 = new System.Windows.Forms.Panel();
       this.persListCombo = new System.Windows.Forms.ComboBox();
       this.button5 = new Lyra2.LyraShell.LyraButtonControl();
       this.moveUpDownPanel = new System.Windows.Forms.Panel();
       this.moveListItemDownBtn = new Infragistics.Win.Misc.UltraButton();
       this.moveListItemUpBtn = new Infragistics.Win.Misc.UltraButton();
       this.songPreview2 = new Lyra2.LyraShell.SongPreview();
       this.panel7 = new Infragistics.Win.Misc.UltraPanel();
       this.listManagementLabel = new Infragistics.Win.Misc.UltraLabel();
       this.linkLabel1 = new System.Windows.Forms.LinkLabel();
       this.button6 = new Lyra2.LyraShell.LyraButtonControl();
       this.button4 = new Lyra2.LyraShell.LyraButtonControl();
       this.label3 = new System.Windows.Forms.Label();
       this.textBox3 = new Lyra2.LyraShell.SearchTextBox();
       this.mainMenu1 = new System.Windows.Forms.MainMenu(this.components);
       this.menuItem1 = new System.Windows.Forms.MenuItem();
       this.menuItem13 = new System.Windows.Forms.MenuItem();
       this.menuItem14 = new System.Windows.Forms.MenuItem();
       this.menuItem15 = new System.Windows.Forms.MenuItem();
       this.menuItem17 = new System.Windows.Forms.MenuItem();
       this.menuItem30 = new System.Windows.Forms.MenuItem();
       this.menuItem31 = new System.Windows.Forms.MenuItem();
       this.menuItem18 = new System.Windows.Forms.MenuItem();
       this.menuItem16 = new System.Windows.Forms.MenuItem();
       this.menuItem2 = new System.Windows.Forms.MenuItem();
       this.menuItem19 = new System.Windows.Forms.MenuItem();
       this.menuItem35 = new System.Windows.Forms.MenuItem();
       this.menuItem36 = new System.Windows.Forms.MenuItem();
       this.menuItem20 = new System.Windows.Forms.MenuItem();
       this.menuItem21 = new System.Windows.Forms.MenuItem();
       this.menuItem51 = new System.Windows.Forms.MenuItem();
       this.menuItem52 = new System.Windows.Forms.MenuItem();
       this.menuItem69 = new System.Windows.Forms.MenuItem();
       this.menuItem68 = new System.Windows.Forms.MenuItem();
       this.menuItem53 = new System.Windows.Forms.MenuItem();
       this.menuItem40 = new System.Windows.Forms.MenuItem();
       this.menuItem63 = new System.Windows.Forms.MenuItem();
       this.menuItem64 = new System.Windows.Forms.MenuItem();
       this.menuItem38 = new System.Windows.Forms.MenuItem();
       this.menuItem41 = new System.Windows.Forms.MenuItem();
       this.menuItem45 = new System.Windows.Forms.MenuItem();
       this.menuItem44 = new System.Windows.Forms.MenuItem();
       this.menuItem49 = new System.Windows.Forms.MenuItem();
       this.menuItem50 = new System.Windows.Forms.MenuItem();
       this.menuItem43 = new System.Windows.Forms.MenuItem();
       this.menuItem34 = new System.Windows.Forms.MenuItem();
       this.menuItem46 = new System.Windows.Forms.MenuItem();
       this.menuItem42 = new System.Windows.Forms.MenuItem();
       this.menuItem47 = new System.Windows.Forms.MenuItem();
       this.menuItem48 = new System.Windows.Forms.MenuItem();
       this.menuItem24 = new System.Windows.Forms.MenuItem();
       this.menuItem3 = new System.Windows.Forms.MenuItem();
       this.menuItem57 = new System.Windows.Forms.MenuItem();
       this.menuItem59 = new System.Windows.Forms.MenuItem();
       this.menuItem65 = new System.Windows.Forms.MenuItem();
       this.menuItem70 = new System.Windows.Forms.MenuItem();
       this.menuItem58 = new System.Windows.Forms.MenuItem();
       this.menuItem54 = new System.Windows.Forms.MenuItem();
       this.menuItem55 = new System.Windows.Forms.MenuItem();
       this.menuItem56 = new System.Windows.Forms.MenuItem();
       this.menuItem61 = new System.Windows.Forms.MenuItem();
       this.menuItem62 = new System.Windows.Forms.MenuItem();
       this.menuItem10 = new System.Windows.Forms.MenuItem();
       this.menuItem26 = new System.Windows.Forms.MenuItem();
       this.menuItem23 = new System.Windows.Forms.MenuItem();
       this.menuItem28 = new System.Windows.Forms.MenuItem();
       this.menuItem27 = new System.Windows.Forms.MenuItem();
       this.menuItem11 = new System.Windows.Forms.MenuItem();
       this.menuItem22 = new System.Windows.Forms.MenuItem();
       this.menuItem12 = new System.Windows.Forms.MenuItem();
       this.menuItem4 = new System.Windows.Forms.MenuItem();
       this.menuItem5 = new System.Windows.Forms.MenuItem();
       this.menuItem33 = new System.Windows.Forms.MenuItem();
       this.menuItem29 = new System.Windows.Forms.MenuItem();
       this.menuItem32 = new System.Windows.Forms.MenuItem();
       this.menuItem37 = new System.Windows.Forms.MenuItem();
       this.statusBar1 = new System.Windows.Forms.StatusBar();
       this.statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
       this.statusBarPanel2 = new System.Windows.Forms.StatusBarPanel();
       this.contextMenu1 = new System.Windows.Forms.ContextMenu();
       this.menuItem6 = new System.Windows.Forms.MenuItem();
       this.menuItem7 = new System.Windows.Forms.MenuItem();
       this.menuItem39 = new System.Windows.Forms.MenuItem();
       this.menuItem8 = new System.Windows.Forms.MenuItem();
       this.menuItem25 = new System.Windows.Forms.MenuItem();
       this.contextMenu2 = new System.Windows.Forms.ContextMenu();
       this.menuItem60 = new System.Windows.Forms.MenuItem();
       this.menuItem66 = new System.Windows.Forms.MenuItem();
       this.menuItem67 = new System.Windows.Forms.MenuItem();
       this.menuItem9 = new System.Windows.Forms.MenuItem();
       this.tabControl1.SuspendLayout();
       this.tabPage2.SuspendLayout();
       this.searchSplitter.Panel1.SuspendLayout();
       this.searchSplitter.Panel2.SuspendLayout();
       this.searchSplitter.SuspendLayout();
       this.panel4.SuspendLayout();
       this.searchPaneTop.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
       ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
       this.panel1.ClientArea.SuspendLayout();
       this.panel1.SuspendLayout();
       this.tabPage1.SuspendLayout();
       this.allSongsSplitter.Panel1.SuspendLayout();
       this.allSongsSplitter.Panel2.SuspendLayout();
       this.allSongsSplitter.SuspendLayout();
       this.controlPaneRight.ClientArea.SuspendLayout();
       this.controlPaneRight.SuspendLayout();
       this.tabPage3.SuspendLayout();
       this.persListSplitter.Panel1.SuspendLayout();
       this.persListSplitter.Panel2.SuspendLayout();
       this.persListSplitter.SuspendLayout();
       this.panel8.SuspendLayout();
       this.moveUpDownPanel.SuspendLayout();
       this.panel7.ClientArea.SuspendLayout();
       this.panel7.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).BeginInit();
       ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).BeginInit();
       this.SuspendLayout();
       //
       // tabControl1
       //
       this.tabControl1.Controls.Add(this.tabPage2);
       this.tabControl1.Controls.Add(this.tabPage1);
       this.tabControl1.Controls.Add(this.tabPage3);
       this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
       this.tabControl1.Location = new System.Drawing.Point(0, 0);
       this.tabControl1.Name = "tabControl1";
       this.tabControl1.SelectedIndex = 0;
       this.tabControl1.Size = new System.Drawing.Size(950, 449);
       this.tabControl1.TabIndex = 0;
       this.tabControl1.SelectedIndexChanged += this.tabControl1_SelectedIndexChanged;
       //
       // tabPage2
       //
       this.tabPage2.BackColor = System.Drawing.Color.WhiteSmoke;
       this.tabPage2.Controls.Add(this.searchSplitter);
       this.tabPage2.Controls.Add(this.panel4);
       this.tabPage2.Controls.Add(this.panel1);
       this.tabPage2.Location = new System.Drawing.Point(4, 22);
       this.tabPage2.Name = "tabPage2";
       this.tabPage2.Size = new System.Drawing.Size(942, 423);
       this.tabPage2.TabIndex = 1;
       this.tabPage2.Text = "Suche";
       this.tabPage2.UseVisualStyleBackColor = true;
       //
       // searchSplitter
       //
       this.searchSplitter.Dock = System.Windows.Forms.DockStyle.Fill;
       this.searchSplitter.Location = new System.Drawing.Point(0, 60);
       this.searchSplitter.Name = "searchSplitter";
       this.searchSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
       //
       // searchSplitter.Panel1
       //
       this.searchSplitter.Panel1.Controls.Add(this.searchListBox);
       this.searchSplitter.Panel1.Controls.Add(this.label4);
       this.searchSplitter.Panel1MinSize = 150;
       //
       // searchSplitter.Panel2
       //
       this.searchSplitter.Panel2.Controls.Add(this.songPreview3);
       this.searchSplitter.Panel2MinSize = 50;
       this.searchSplitter.Size = new System.Drawing.Size(830, 363);
       this.searchSplitter.SplitterDistance = 266;
       this.searchSplitter.TabIndex = 18;
       //
       // searchListBox
       //
       this.searchListBox.Dock = System.Windows.Forms.DockStyle.Fill;
       this.searchListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
       this.searchListBox.ItemHeight = 15;
       this.searchListBox.Location = new System.Drawing.Point(0, 0);
       this.searchListBox.Name = "searchListBox";
       this.searchListBox.NrOfNumberMatches = 0;
       this.searchListBox.Size = new System.Drawing.Size(830, 244);
       this.searchListBox.TabIndex = 5;
       this.searchListBox.SelectedIndexChanged += this.listBox3_SelectedIndexChanged;
       this.searchListBox.DoubleClick += this.listBox3_dblClick;
       this.searchListBox.SelectedValueChanged += this.listBox3_SelectedValueChanged;
       //
       // label4
       //
       this.label4.Dock = System.Windows.Forms.DockStyle.Bottom;
       this.label4.ForeColor = System.Drawing.Color.SaddleBrown;
       this.label4.Location = new System.Drawing.Point(0, 251);
       this.label4.Name = "label4";
       this.label4.Size = new System.Drawing.Size(830, 15);
       this.label4.TabIndex = 14;
       this.label4.Text = "Suchergebnisse könnten fehlerhaft sein. Bitte Änderungen übernehmen!";
       this.label4.Visible = false;
       //
       // songPreview3
       //
       this.songPreview3.AutoScroll = true;
       this.songPreview3.Dock = System.Windows.Forms.DockStyle.Fill;
       this.songPreview3.Location = new System.Drawing.Point(0, 0);
       this.songPreview3.Name = "songPreview3";
       this.songPreview3.Size = new System.Drawing.Size(830, 93);
       this.songPreview3.TabIndex = 0;
       //
       // panel4
       //
       this.panel4.Controls.Add(this.sortCombo);
       this.panel4.Controls.Add(this.sortLabel);
       this.panel4.Controls.Add(this.searchPaneTop);
       this.panel4.Controls.Add(this.mainSearchBox);
       this.panel4.Controls.Add(this.checkBox1);
       this.panel4.Controls.Add(this.resultsLabel);
       this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
       this.panel4.Location = new System.Drawing.Point(0, 0);
       this.panel4.Name = "panel4";
       this.panel4.Size = new System.Drawing.Size(830, 60);
       this.panel4.TabIndex = 17;
       //
       // sortCombo
       //
       this.sortCombo.BackColor = System.Drawing.Color.WhiteSmoke;
       this.sortCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
       this.sortCombo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
       this.sortCombo.FormattingEnabled = true;
       this.sortCombo.Items.AddRange(new object[]
                                       {
                                           "Nummer (aufsteigend)",
                                           "Nummer (absteigend)",
                                           "Relevanz (absteigend)",
                                           "Relevanz (aufsteigend)",
                                           "Titel (aufsteigend)",
                                           "Titel (absteiged)"
                                       });
       this.sortCombo.Location = new System.Drawing.Point(193, 32);
       this.sortCombo.Name = "sortCombo";
       this.sortCombo.Size = new System.Drawing.Size(164, 21);
       this.sortCombo.TabIndex = 16;
       //
       // sortLabel
       //
       this.sortLabel.AutoSize = true;
       this.sortLabel.ForeColor = System.Drawing.Color.DimGray;
       this.sortLabel.Location = new System.Drawing.Point(111, 35);
       this.sortLabel.Name = "sortLabel";
       this.sortLabel.Size = new System.Drawing.Size(76, 13);
       this.sortLabel.TabIndex = 15;
       this.sortLabel.Text = "Sortierung :";
       //
       // searchPaneTop
       //
       this.searchPaneTop.BackColor = System.Drawing.Color.WhiteSmoke;
       this.searchPaneTop.Controls.Add(this.pictureBox4);
       this.searchPaneTop.Controls.Add(this.label2);
       this.searchPaneTop.Controls.Add(this.pictureBox1);
       this.searchPaneTop.Dock = System.Windows.Forms.DockStyle.Right;
       this.searchPaneTop.Location = new System.Drawing.Point(630, 0);
       this.searchPaneTop.Name = "searchPaneTop";
       this.searchPaneTop.Size = new System.Drawing.Size(200, 60);
       this.searchPaneTop.TabIndex = 2;
       //
       // pictureBox4
       //
       this.pictureBox4.Cursor = System.Windows.Forms.Cursors.Hand;
       this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
       this.pictureBox4.Location = new System.Drawing.Point(3, 8);
       this.pictureBox4.Name = "pictureBox4";
       this.pictureBox4.Size = new System.Drawing.Size(22, 22);
       this.pictureBox4.TabIndex = 12;
       this.pictureBox4.TabStop = false;
       this.pictureBox4.Click += this.button8_Click;
       //
       // label2
       //
       this.label2.AutoSize = true;
       this.label2.ForeColor = System.Drawing.Color.DimGray;
       this.label2.Location = new System.Drawing.Point(67, 12);
       this.label2.Name = "label2";
       this.label2.Size = new System.Drawing.Size(121, 13);
       this.label2.TabIndex = 15;
       this.label2.Text = "Suche zurücksetzen";
       //
       // pictureBox1
       //
       this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Hand;
       this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
       this.pictureBox1.Location = new System.Drawing.Point(43, 8);
       this.pictureBox1.Name = "pictureBox1";
       this.pictureBox1.Size = new System.Drawing.Size(22, 22);
       this.pictureBox1.TabIndex = 14;
       this.pictureBox1.TabStop = false;
       this.pictureBox1.Click += this.pictureBox1_Click;
       //
       // mainSearchBox
       //
       this.mainSearchBox.Anchor = ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                              | System.Windows.Forms.AnchorStyles.Right)));
       this.mainSearchBox.BackColor = System.Drawing.Color.FromArgb(((((253)))), ((((253)))), ((((176)))));
       this.mainSearchBox.DefaultText = "Suchbegriffe";
       this.mainSearchBox.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point,
                                                 ((0)));
       this.mainSearchBox.ForeColor = System.Drawing.Color.DimGray;
       this.mainSearchBox.Location = new System.Drawing.Point(8, 8);
       this.mainSearchBox.Name = "mainSearchBox";
       this.mainSearchBox.Size = new System.Drawing.Size(616, 22);
       this.mainSearchBox.TabIndex = 0;
       this.mainSearchBox.Text = "Suchbegriffe";
       this.mainSearchBox.TextChanged += this.textBox2_TextChanged;
       this.mainSearchBox.KeyDown += this.textBox2_KeyDown;
       //
       // checkBox1
       //
       this.checkBox1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
       this.checkBox1.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0)));
       this.checkBox1.ForeColor = System.Drawing.Color.DimGray;
       this.checkBox1.Location = new System.Drawing.Point(8, 34);
       this.checkBox1.Name = "checkBox1";
       this.checkBox1.Size = new System.Drawing.Size(88, 18);
       this.checkBox1.TabIndex = 7;
       this.checkBox1.Text = "Nur Titel :";
       this.checkBox1.CheckedChanged += this.checkBox3_CheckedChanged;
       //
       // resultsLabel
       //
       this.resultsLabel.BackColor = System.Drawing.Color.Transparent;
       this.resultsLabel.ForeColor = System.Drawing.Color.DimGray;
       this.resultsLabel.Location = new System.Drawing.Point(504, 32);
       this.resultsLabel.Name = "resultsLabel";
       this.resultsLabel.Size = new System.Drawing.Size(100, 23);
       this.resultsLabel.TabIndex = 13;
       this.resultsLabel.TextAlign = System.Drawing.ContentAlignment.TopRight;
       //
       // panel1
       //
       appearance1.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.right_pane_bg;
       appearance1.ImageBackgroundStretchMargins = new Infragistics.Win.ImageBackgroundStretchMargins(110, 100, 1, 350);
       appearance1.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Stretched;
       this.panel1.Appearance = appearance1;
       //
       // panel1.ClientArea
       //
       this.panel1.ClientArea.Controls.Add(this.ultraLabel1);
       this.panel1.ClientArea.Controls.Add(this.textBox1);
       this.panel1.ClientArea.Controls.Add(this.button7);
       this.panel1.ClientArea.Controls.Add(this.showSongBtn);
       this.panel1.Dock = System.Windows.Forms.DockStyle.Right;
       this.panel1.Location = new System.Drawing.Point(830, 0);
       this.panel1.Name = "panel1";
       this.panel1.Size = new System.Drawing.Size(112, 423);
       this.panel1.TabIndex = 15;
       //
       // ultraLabel1
       //
       appearance15.BackColor = System.Drawing.Color.Transparent;
       appearance15.BackColor2 = System.Drawing.Color.FromArgb(((((255)))), ((((255)))), ((((192)))));
       appearance15.BackColorAlpha = Infragistics.Win.Alpha.Opaque;
       appearance15.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
       appearance15.FontData.ItalicAsString = "True";
       appearance15.ForeColor = System.Drawing.Color.DimGray;
       appearance15.TextHAlignAsString = "Left";
       this.ultraLabel1.Appearance = appearance15;
       this.ultraLabel1.Location = new System.Drawing.Point(12, 87);
       this.ultraLabel1.Name = "ultraLabel1";
       this.ultraLabel1.Padding = new System.Drawing.Size(10, 0);
       this.ultraLabel1.Size = new System.Drawing.Size(96, 26);
       this.ultraLabel1.TabIndex = 7;
       this.ultraLabel1.Text = "Quick\r\n   View";
       //
       // textBox1
       //
       this.textBox1.DefaultText = "Nummer";
       this.textBox1.ForeColor = System.Drawing.Color.DimGray;
       this.textBox1.Location = new System.Drawing.Point(12, 119);
       this.textBox1.Name = "textBox1";
       this.textBox1.Size = new System.Drawing.Size(96, 21);
       this.textBox1.TabIndex = 0;
       this.textBox1.Text = "Nummer";
       this.textBox1.Click += this.textBox1_Click;
       this.textBox1.KeyDown += this.textBox1_KeyDown;
       //
       // button7
       //
       this.button7.Location = new System.Drawing.Point(28, 144);
       this.button7.Name = "button7";
       this.button7.Size = new System.Drawing.Size(80, 22);
       this.button7.TabIndex = 1;
       this.button7.Text = "Anzeigen";
       this.button7.Click += this.button7_Click;
       //
       // showSongBtn
       //
       appearance10.FontData.BoldAsString = "False";
       appearance10.FontData.SizeInPoints = 11F;
       appearance10.ForeColor = System.Drawing.Color.FromArgb(((((0)))), ((((85)))), ((((170)))));
       this.showSongBtn.Appearance = appearance10;
       this.showSongBtn.ForeColor = System.Drawing.Color.Brown;
       this.showSongBtn.Location = new System.Drawing.Point(12, 8);
       this.showSongBtn.Name = "showSongBtn";
       this.showSongBtn.Size = new System.Drawing.Size(96, 46);
       this.showSongBtn.TabIndex = 4;
       this.showSongBtn.Text = "Anzeigen!";
       this.showSongBtn.Click += this.listBox3_dblClick;
       //
       // tabPage1
       //
       this.tabPage1.BackColor = System.Drawing.Color.WhiteSmoke;
       this.tabPage1.Controls.Add(this.allSongsSplitter);
       this.tabPage1.Controls.Add(this.controlPaneRight);
       this.tabPage1.Location = new System.Drawing.Point(4, 22);
       this.tabPage1.Name = "tabPage1";
       this.tabPage1.Size = new System.Drawing.Size(942, 423);
       this.tabPage1.TabIndex = 0;
       this.tabPage1.Text = "Songliste";
       this.tabPage1.UseVisualStyleBackColor = true;
       //
       // allSongsSplitter
       //
       this.allSongsSplitter.Dock = System.Windows.Forms.DockStyle.Fill;
       this.allSongsSplitter.Location = new System.Drawing.Point(0, 0);
       this.allSongsSplitter.Name = "allSongsSplitter";
       this.allSongsSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
       //
       // allSongsSplitter.Panel1
       //
       this.allSongsSplitter.Panel1.Controls.Add(this.allSongsListBox);
       this.allSongsSplitter.Panel1MinSize = 150;
       //
       // allSongsSplitter.Panel2
       //
       this.allSongsSplitter.Panel2.Controls.Add(this.songPreview1);
       this.allSongsSplitter.Panel2MinSize = 50;
       this.allSongsSplitter.Size = new System.Drawing.Size(830, 423);
       this.allSongsSplitter.SplitterDistance = 292;
       this.allSongsSplitter.TabIndex = 8;
       //
       // allSongsListBox
       //
       this.allSongsListBox.Dock = System.Windows.Forms.DockStyle.Fill;
       this.allSongsListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
       this.allSongsListBox.ItemHeight = 15;
       this.allSongsListBox.Location = new System.Drawing.Point(0, 0);
       this.allSongsListBox.Name = "allSongsListBox";
       this.allSongsListBox.NrOfNumberMatches = 0;
       this.allSongsListBox.RightToLeft = System.Windows.Forms.RightToLeft.No;
       this.allSongsListBox.Size = new System.Drawing.Size(830, 289);
       this.allSongsListBox.Sorted = true;
       this.allSongsListBox.TabIndex = 0;
       this.allSongsListBox.SelectedIndexChanged += this.listBox1_SelectedIndexChanged;
       this.allSongsListBox.DoubleClick += this.listBox1_dblClick;
       this.allSongsListBox.SelectedValueChanged += this.listBox1_SelectedValueChanged;
       //
       // songPreview1
       //
       this.songPreview1.AutoScroll = true;
       this.songPreview1.Dock = System.Windows.Forms.DockStyle.Fill;
       this.songPreview1.Location = new System.Drawing.Point(0, 0);
       this.songPreview1.Name = "songPreview1";
       this.songPreview1.Size = new System.Drawing.Size(830, 127);
       this.songPreview1.TabIndex = 0;
       //
       // controlPaneRight
       //
       appearance2.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.right_pane_bg;
       appearance2.ImageBackgroundStretchMargins = new Infragistics.Win.ImageBackgroundStretchMargins(110, 100, 1, 350);
       appearance2.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Stretched;
       this.controlPaneRight.Appearance = appearance2;
       //
       // controlPaneRight.ClientArea
       //
       this.controlPaneRight.ClientArea.Controls.Add(this.songManagmentLabel);
       this.controlPaneRight.ClientArea.Controls.Add(this.button3);
       this.controlPaneRight.ClientArea.Controls.Add(this.button1);
       this.controlPaneRight.ClientArea.Controls.Add(this.button2);
       this.controlPaneRight.ClientArea.Controls.Add(this.button9);
       this.controlPaneRight.Dock = System.Windows.Forms.DockStyle.Right;
       this.controlPaneRight.Location = new System.Drawing.Point(830, 0);
       this.controlPaneRight.Name = "controlPaneRight";
       this.controlPaneRight.Size = new System.Drawing.Size(112, 423);
       this.controlPaneRight.TabIndex = 7;
       //
       // songManagmentLabel
       //
       appearance13.BackColor = System.Drawing.Color.Transparent;
       appearance13.BackColor2 = System.Drawing.Color.FromArgb(((((255)))), ((((255)))), ((((192)))));
       appearance13.BackColorAlpha = Infragistics.Win.Alpha.Opaque;
       appearance13.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
       appearance13.FontData.ItalicAsString = "True";
       appearance13.ForeColor = System.Drawing.Color.DimGray;
       appearance13.TextHAlignAsString = "Left";
       this.songManagmentLabel.Appearance = appearance13;
       this.songManagmentLabel.Location = new System.Drawing.Point(12, 87);
       this.songManagmentLabel.Name = "songManagmentLabel";
       this.songManagmentLabel.Padding = new System.Drawing.Size(10, 0);
       this.songManagmentLabel.Size = new System.Drawing.Size(96, 26);
       this.songManagmentLabel.TabIndex = 6;
       this.songManagmentLabel.Text = "Lieder\r\n   verwalten";
       //
       // button3
       //
       appearance12.FontData.BoldAsString = "False";
       appearance12.FontData.SizeInPoints = 11F;
       appearance12.ForeColor = System.Drawing.Color.FromArgb(((((0)))), ((((85)))), ((((170)))));
       this.button3.Appearance = appearance12;
       this.button3.ForeColor = System.Drawing.Color.Brown;
       this.button3.Location = new System.Drawing.Point(12, 8);
       this.button3.Name = "button3";
       this.button3.Size = new System.Drawing.Size(96, 46);
       this.button3.TabIndex = 3;
       this.button3.Text = "Anzeigen!";
       this.button3.Click += this.button3_Click;
       //
       // button1
       //
       this.button1.Location = new System.Drawing.Point(12, 119);
       this.button1.Name = "button1";
       this.button1.Size = new System.Drawing.Size(96, 28);
       this.button1.TabIndex = 1;
       this.button1.Text = "Neues Lied…";
       this.button1.Click += this.button1_Click;
       //
       // button2
       //
       this.button2.Location = new System.Drawing.Point(12, 153);
       this.button2.Name = "button2";
       this.button2.Size = new System.Drawing.Size(96, 28);
       this.button2.TabIndex = 2;
       this.button2.Text = "Editieren…";
       this.button2.Click += this.button2_Click;
       //
       // button9
       //
       this.button9.Location = new System.Drawing.Point(12, 187);
       this.button9.Name = "button9";
       this.button9.Size = new System.Drawing.Size(96, 28);
       this.button9.TabIndex = 5;
       this.button9.Text = "Löschen";
       this.button9.Click += this.button9_Click;
       //
       // tabPage3
       //
       this.tabPage3.BackColor = System.Drawing.Color.WhiteSmoke;
       this.tabPage3.Controls.Add(this.persListSplitter);
       this.tabPage3.Controls.Add(this.panel7);
       this.tabPage3.Location = new System.Drawing.Point(4, 22);
       this.tabPage3.Name = "tabPage3";
       this.tabPage3.Size = new System.Drawing.Size(942, 423);
       this.tabPage3.TabIndex = 2;
       this.tabPage3.Text = "Listen";
       this.tabPage3.UseVisualStyleBackColor = true;
       //
       // persListSplitter
       //
       this.persListSplitter.Dock = System.Windows.Forms.DockStyle.Fill;
       this.persListSplitter.Location = new System.Drawing.Point(0, 0);
       this.persListSplitter.Name = "persListSplitter";
       this.persListSplitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
       //
       // persListSplitter.Panel1
       //
       this.persListSplitter.Panel1.Controls.Add(this.personalListsListBox);
       this.persListSplitter.Panel1.Controls.Add(this.panel8);
       this.persListSplitter.Panel1.Controls.Add(this.moveUpDownPanel);
       this.persListSplitter.Panel1MinSize = 150;
       //
       // persListSplitter.Panel2
       //
       this.persListSplitter.Panel2.Controls.Add(this.songPreview2);
       this.persListSplitter.Panel2MinSize = 50;
       this.persListSplitter.Size = new System.Drawing.Size(830, 423);
       this.persListSplitter.SplitterDistance = 292;
       this.persListSplitter.TabIndex = 17;
       //
       // personalListsListBox
       //
       this.personalListsListBox.Dock = System.Windows.Forms.DockStyle.Fill;
       this.personalListsListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
       this.personalListsListBox.ItemHeight = 15;
       this.personalListsListBox.Location = new System.Drawing.Point(24, 30);
       this.personalListsListBox.Name = "personalListsListBox";
       this.personalListsListBox.NrOfNumberMatches = 0;
       this.personalListsListBox.Size = new System.Drawing.Size(806, 259);
       this.personalListsListBox.TabIndex = 0;
       this.personalListsListBox.SelectedIndexChanged += this.listBox2_SelectedIndexChanged;
       this.personalListsListBox.DoubleClick += this.listBox2_DoubleClick;
       this.personalListsListBox.SelectedValueChanged += this.listBox2_SelectedValueChanged;
       //
       // panel8
       //
       this.panel8.Controls.Add(this.persListCombo);
       this.panel8.Controls.Add(this.button5);
       this.panel8.Dock = System.Windows.Forms.DockStyle.Top;
       this.panel8.Location = new System.Drawing.Point(24, 0);
       this.panel8.Name = "panel8";
       this.panel8.Size = new System.Drawing.Size(806, 30);
       this.panel8.TabIndex = 15;
       //
       // persListCombo
       //
       this.persListCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
       this.persListCombo.Location = new System.Drawing.Point(1, 4);
       this.persListCombo.Name = "persListCombo";
       this.persListCombo.Size = new System.Drawing.Size(448, 21);
       this.persListCombo.TabIndex = 4;
       this.persListCombo.SelectedIndexChanged += this.comboBox1_SelectedIndexChanged;
       //
       // button5
       //
       this.button5.Location = new System.Drawing.Point(455, 4);
       this.button5.Name = "button5";
       this.button5.Size = new System.Drawing.Size(96, 21);
       this.button5.TabIndex = 2;
       this.button5.Text = "Neue Liste…";
       this.button5.Click += this.button5_Click;
       //
       // moveUpDownPanel
       //
       this.moveUpDownPanel.Controls.Add(this.moveListItemDownBtn);
       this.moveUpDownPanel.Controls.Add(this.moveListItemUpBtn);
       this.moveUpDownPanel.Dock = System.Windows.Forms.DockStyle.Left;
       this.moveUpDownPanel.Location = new System.Drawing.Point(0, 0);
       this.moveUpDownPanel.Name = "moveUpDownPanel";
       this.moveUpDownPanel.Size = new System.Drawing.Size(24, 292);
       this.moveUpDownPanel.TabIndex = 16;
       this.moveUpDownPanel.Resize += this.MoveUpDownPanelResizeHandler;
       //
       // moveListItemDownBtn
       //
       appearance7.BorderAlpha = Infragistics.Win.Alpha.Transparent;
       appearance7.ForegroundAlpha = Infragistics.Win.Alpha.Transparent;
       appearance7.ImageAlpha = Infragistics.Win.Alpha.Transparent;
       appearance7.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_down;
       this.moveListItemDownBtn.Appearance = appearance7;
       this.moveListItemDownBtn.BackgroundImage = global::Lyra2.LyraShell.Properties.Resources.pfeilDown;
       this.moveListItemDownBtn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
       this.moveListItemDownBtn.ButtonStyle = Infragistics.Win.UIElementButtonStyle.FlatBorderless;
       appearance6.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_down_over;
       this.moveListItemDownBtn.HotTrackAppearance = appearance6;
       this.moveListItemDownBtn.Location = new System.Drawing.Point(5, 136);
       this.moveListItemDownBtn.Name = "moveListItemDownBtn";
       appearance9.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_down_down;
       this.moveListItemDownBtn.PressedAppearance = appearance9;
       this.moveListItemDownBtn.ShowFocusRect = false;
       this.moveListItemDownBtn.ShowOutline = false;
       this.moveListItemDownBtn.Size = new System.Drawing.Size(13, 37);
       this.moveListItemDownBtn.TabIndex = 7;
       this.moveListItemDownBtn.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
       this.moveListItemDownBtn.UseHotTracking = Infragistics.Win.DefaultableBoolean.True;
       this.moveListItemDownBtn.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
       this.moveListItemDownBtn.Click += this.button12_Click;
       //
       // moveListItemUpBtn
       //
       appearance4.BorderAlpha = Infragistics.Win.Alpha.Transparent;
       appearance4.ForegroundAlpha = Infragistics.Win.Alpha.Transparent;
       appearance4.ImageAlpha = Infragistics.Win.Alpha.Transparent;
       appearance4.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_up;
       appearance4.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Stretched;
       this.moveListItemUpBtn.Appearance = appearance4;
       this.moveListItemUpBtn.BackgroundImage = global::Lyra2.LyraShell.Properties.Resources.pfeilUp;
       this.moveListItemUpBtn.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
       this.moveListItemUpBtn.ButtonStyle = Infragistics.Win.UIElementButtonStyle.FlatBorderless;
       appearance5.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_up_over;
       this.moveListItemUpBtn.HotTrackAppearance = appearance5;
       this.moveListItemUpBtn.Location = new System.Drawing.Point(5, 88);
       this.moveListItemUpBtn.Name = "moveListItemUpBtn";
       appearance8.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.arrow_up_down;
       this.moveListItemUpBtn.PressedAppearance = appearance8;
       this.moveListItemUpBtn.ShowFocusRect = false;
       this.moveListItemUpBtn.ShowOutline = false;
       this.moveListItemUpBtn.Size = new System.Drawing.Size(13, 37);
       this.moveListItemUpBtn.TabIndex = 8;
       this.moveListItemUpBtn.UseFlatMode = Infragistics.Win.DefaultableBoolean.True;
       this.moveListItemUpBtn.UseHotTracking = Infragistics.Win.DefaultableBoolean.True;
       this.moveListItemUpBtn.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
       this.moveListItemUpBtn.Click += this.button13_Click;
       //
       // songPreview2
       //
       this.songPreview2.AutoScroll = true;
       this.songPreview2.Dock = System.Windows.Forms.DockStyle.Fill;
       this.songPreview2.Location = new System.Drawing.Point(0, 0);
       this.songPreview2.Name = "songPreview2";
       this.songPreview2.Size = new System.Drawing.Size(830, 127);
       this.songPreview2.TabIndex = 0;
       //
       // panel7
       //
       appearance3.ImageBackground = global::Lyra2.LyraShell.Properties.Resources.right_pane_bg;
       appearance3.ImageBackgroundStretchMargins = new Infragistics.Win.ImageBackgroundStretchMargins(110, 100, 1, 350);
       appearance3.ImageBackgroundStyle = Infragistics.Win.ImageBackgroundStyle.Stretched;
       this.panel7.Appearance = appearance3;
       //
       // panel7.ClientArea
       //
       this.panel7.ClientArea.Controls.Add(this.listManagementLabel);
       this.panel7.ClientArea.Controls.Add(this.linkLabel1);
       this.panel7.ClientArea.Controls.Add(this.button6);
       this.panel7.ClientArea.Controls.Add(this.button4);
       this.panel7.ClientArea.Controls.Add(this.label3);
       this.panel7.ClientArea.Controls.Add(this.textBox3);
       this.panel7.Dock = System.Windows.Forms.DockStyle.Right;
       this.panel7.Location = new System.Drawing.Point(830, 0);
       this.panel7.Name = "panel7";
       this.panel7.Size = new System.Drawing.Size(112, 423);
       this.panel7.TabIndex = 14;
       //
       // listManagementLabel
       //
       appearance14.BackColor = System.Drawing.Color.Transparent;
       appearance14.BackColor2 = System.Drawing.Color.FromArgb(((((255)))), ((((255)))), ((((192)))));
       appearance14.BackColorAlpha = Infragistics.Win.Alpha.Opaque;
       appearance14.BackGradientStyle = Infragistics.Win.GradientStyle.ForwardDiagonal;
       appearance14.FontData.ItalicAsString = "True";
       appearance14.ForeColor = System.Drawing.Color.DimGray;
       appearance14.TextHAlignAsString = "Left";
       this.listManagementLabel.Appearance = appearance14;
       this.listManagementLabel.Location = new System.Drawing.Point(12, 87);
       this.listManagementLabel.Name = "listManagementLabel";
       this.listManagementLabel.Padding = new System.Drawing.Size(10, 0);
       this.listManagementLabel.Size = new System.Drawing.Size(96, 26);
       this.listManagementLabel.TabIndex = 15;
       this.listManagementLabel.Text = "Listen\r\n   verwalten";
       //
       // linkLabel1
       //
       this.linkLabel1.ActiveLinkColor = System.Drawing.Color.Orange;
       this.linkLabel1.AutoSize = true;
       this.linkLabel1.BackColor = System.Drawing.Color.Transparent;
       this.linkLabel1.Font = new System.Drawing.Font("Consolas", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((0)));
       this.linkLabel1.LinkColor = System.Drawing.Color.FromArgb(((((64)))), ((((64)))), ((((64)))));
       this.linkLabel1.Location = new System.Drawing.Point(12, 169);
       this.linkLabel1.Name = "linkLabel1";
       this.linkLabel1.Size = new System.Drawing.Size(24, 18);
       this.linkLabel1.TabIndex = 13;
       this.linkLabel1.TabStop = true;
       this.linkLabel1.Text = "<<";
       this.linkLabel1.VisitedLinkColor = System.Drawing.Color.FromArgb(((((64)))), ((((64)))), ((((64)))));
       this.linkLabel1.Click += this.button10_Click;
       //
       // button6
       //
       this.button6.Location = new System.Drawing.Point(12, 119);
       this.button6.Name = "button6";
       this.button6.Size = new System.Drawing.Size(96, 27);
       this.button6.TabIndex = 3;
       this.button6.Text = "Lied entfernen";
       this.button6.Click += this.button6_Click;
       //
       // button4
       //
       appearance11.FontData.SizeInPoints = 11F;
       appearance11.ForeColor = System.Drawing.Color.FromArgb(((((0)))), ((((85)))), ((((170)))));
       this.button4.Appearance = appearance11;
       this.button4.Location = new System.Drawing.Point(12, 8);
       this.button4.Name = "button4";
       this.button4.Size = new System.Drawing.Size(96, 46);
       this.button4.TabIndex = 1;
       this.button4.Text = "Anzeigen!";
       this.button4.Click += this.button4_Click;
       //
       // label3
       //
       this.label3.BackColor = System.Drawing.Color.Transparent;
       this.label3.ForeColor = System.Drawing.Color.DimGray;
       this.label3.Location = new System.Drawing.Point(12, 153);
       this.label3.Name = "label3";
       this.label3.Size = new System.Drawing.Size(96, 13);
       this.label3.TabIndex = 12;
       this.label3.Text = "Lied hinzufügen";
       //
       // textBox3
       //
       this.textBox3.DefaultText = "Nummer";
       this.textBox3.ForeColor = System.Drawing.Color.DimGray;
       this.textBox3.Location = new System.Drawing.Point(36, 169);
       this.textBox3.Name = "textBox3";
       this.textBox3.Size = new System.Drawing.Size(72, 21);
       this.textBox3.TabIndex = 9;
       this.textBox3.Text = "Nummer";
       this.textBox3.Click += this.textBox3_Click;
       this.textBox3.KeyDown += this.textBox3_KeyDown;
       //
       // mainMenu1
       //
       this.mainMenu1.MenuItems.AddRange(new[]
                                           {
                                               this.menuItem1,
                                               this.menuItem19,
                                               this.menuItem57,
                                               this.menuItem10,
                                               this.menuItem4,
                                               this.menuItem37
                                           });
       //
       // menuItem1
       //
       this.menuItem1.Index = 0;
       this.menuItem1.MenuItems.AddRange(new[]
                                           {
                                               this.menuItem13,
                                               this.menuItem14,
                                               this.menuItem17,
                                               this.menuItem18,
                                               this.menuItem16,
                                               this.menuItem2
                                           });
       this.menuItem1.Text = "&Datei";
       //
       // menuItem13
       //
       this.menuItem13.Enabled = false;
       this.menuItem13.Index = 0;
       this.menuItem13.Shortcut = System.Windows.Forms.Shortcut.CtrlS;
       this.menuItem13.Text = "Ü&bernehmen!";
       this.menuItem13.Click += this.CommitMenuItemClickHandler;
       //
       // menuItem14
       //
       this.menuItem14.Enabled = false;
       this.menuItem14.Index = 1;
       this.menuItem14.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem15
                                            });
       this.menuItem14.Text = "Änderungen &verwerfen!";
       //
       // menuItem15
       //
       this.menuItem15.Index = 0;
       this.menuItem15.Text = "&Ok";
       this.menuItem15.Click += this.menuItem15_Click;
       //
       // menuItem17
       //
       this.menuItem17.Index = 2;
       this.menuItem17.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem30,
                                                this.menuItem31
                                            });
       this.menuItem17.Text = "I&mportieren";
       //
       // menuItem30
       //
       this.menuItem30.Index = 0;
       this.menuItem30.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftI;
       this.menuItem30.Text = "&XML";
       this.menuItem30.Click += this.menuItem30_Click;
       //
       // menuItem31
       //
       this.menuItem31.Index = 1;
       this.menuItem31.Text = "&LTX (Liedtext-Format)";
       this.menuItem31.Click += this.menuItem31_Click;
       //
       // menuItem18
       //
       this.menuItem18.Index = 3;
       this.menuItem18.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftE;
       this.menuItem18.Text = "Ex&portieren…";
       this.menuItem18.Click += this.menuItem18_Click;
       //
       // menuItem16
       //
       this.menuItem16.Index = 4;
       this.menuItem16.Text = "-";
       //
       // menuItem2
       //
       this.menuItem2.Index = 5;
       this.menuItem2.Text = "Be&enden";
       this.menuItem2.Click += this.menuItem2_Click;
       //
       // menuItem19
       //
       this.menuItem19.Index = 1;
       this.menuItem19.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem35,
                                                this.menuItem36,
                                                this.menuItem20,
                                                this.menuItem21,
                                                this.menuItem51,
                                                this.menuItem40,
                                                this.menuItem24,
                                                this.menuItem3
                                            });
       this.menuItem19.Text = "E&xtras";
       //
       // menuItem35
       //
       this.menuItem35.Index = 0;
       this.menuItem35.Shortcut = System.Windows.Forms.Shortcut.F12;
       this.menuItem35.Text = "&Präsentationsmodus";
       this.menuItem35.Click += this.menuItem35_Click;
       //
       // menuItem36
       //
       this.menuItem36.Index = 1;
       this.menuItem36.Text = "-";
       //
       // menuItem20
       //
       this.menuItem20.Enabled = false;
       this.menuItem20.Index = 2;
       this.menuItem20.Text = "Songbook drucken...";
       //
       // menuItem21
       //
       this.menuItem21.Index = 3;
       this.menuItem21.Text = "HTML Seite generieren…";
       this.menuItem21.Click += this.menuItem21_Click;
       //
       // menuItem51
       //
       this.menuItem51.Index = 4;
       this.menuItem51.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem52,
                                                this.menuItem69
                                            });
       this.menuItem51.Text = "Unformatierter Text…";
       //
       // menuItem52
       //
       this.menuItem52.Index = 0;
       this.menuItem52.Text = "Ausgewählter Song";
       this.menuItem52.Click += this.menuItem52_Click;
       //
       // menuItem69
       //
       this.menuItem69.Index = 1;
       this.menuItem69.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem68,
                                                this.menuItem53
                                            });
       this.menuItem69.Text = "Alle Songs";
       //
       // menuItem68
       //
       this.menuItem68.Index = 0;
       this.menuItem68.Text = "Titel-Index";
       this.menuItem68.Click += this.menuItem68_Click;
       //
       // menuItem53
       //
       this.menuItem53.Index = 1;
       this.menuItem53.Text = "Komplett";
       this.menuItem53.Click += this.menuItem53_Click;
       //
       // menuItem40
       //
       this.menuItem40.Index = 5;
       this.menuItem40.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem63,
                                                this.menuItem64,
                                                this.menuItem38,
                                                this.menuItem41,
                                                this.menuItem45,
                                                this.menuItem44,
                                                this.menuItem43,
                                                this.menuItem34,
                                                this.menuItem46,
                                                this.menuItem42,
                                                this.menuItem47,
                                                this.menuItem48
                                            });
       this.menuItem40.Text = "E&xpertentools";
       //
       // menuItem63
       //
       this.menuItem63.Index = 0;
       this.menuItem63.Text = "Suchindex ern&euern";
       this.menuItem63.Click += this.menuItem63_Click;
       //
       // menuItem64
       //
       this.menuItem64.Index = 1;
       this.menuItem64.Text = "-";
       //
       // menuItem38
       //
       this.menuItem38.Index = 2;
       this.menuItem38.Text = "&Update lyra Songtexte...";
       this.menuItem38.Click += this.menuItem38_Click;
       //
       // menuItem41
       //
       this.menuItem41.Index = 3;
       this.menuItem41.Text = "Letztes Update &rückgängig machen";
       this.menuItem41.Click += this.menuItem41_Click;
       //
       // menuItem45
       //
       this.menuItem45.Index = 4;
       this.menuItem45.Text = "-";
       //
       // menuItem44
       //
       this.menuItem44.Enabled = false;
       this.menuItem44.Index = 5;
       this.menuItem44.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem49,
                                                this.menuItem50
                                            });
       this.menuItem44.Text = "Dateien für Update-&Server erstellen";
       //
       // menuItem49
       //
       this.menuItem49.Index = 0;
       this.menuItem49.Text = "neuer Server...";
       this.menuItem49.Click += this.menuItem49_Click;
       //
       // menuItem50
       //
       this.menuItem50.Index = 1;
       this.menuItem50.Text = "für bestehenden Server...";
       this.menuItem50.Click += this.menuItem50_Click;
       //
       // menuItem43
       //
       this.menuItem43.Index = 6;
       this.menuItem43.Text = "-";
       //
       // menuItem34
       //
       this.menuItem34.Index = 7;
       this.menuItem34.Text = "Liste für &Pocket PC...";
       this.menuItem34.Click += this.menuItem34_Click;
       //
       // menuItem46
       //
       this.menuItem46.Index = 8;
       this.menuItem46.Text = "-";
       //
       // menuItem42
       //
       this.menuItem42.Enabled = false;
       this.menuItem42.Index = 9;
       this.menuItem42.Text = "&Vorbereiten für Lyra 2.0";
       //
       // menuItem47
       //
       this.menuItem47.Index = 10;
       this.menuItem47.Text = "-";
       //
       // menuItem48
       //
       this.menuItem48.Index = 11;
       this.menuItem48.Text = "Lyra neu starten! (ohne Übernehmen)";
       this.menuItem48.Click += this.menuItem48_Click;
       //
       // menuItem24
       //
       this.menuItem24.Index = 6;
       this.menuItem24.Text = "-";
       //
       // menuItem3
       //
       this.menuItem3.Index = 7;
       this.menuItem3.Text = "&Optionen…";
       this.menuItem3.Click += this.menuItem3_Click;
       //
       // menuItem57
       //
       this.menuItem57.Index = 2;
       this.menuItem57.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem59,
                                                this.menuItem65,
                                                this.menuItem70,
                                                this.menuItem58,
                                                this.menuItem54,
                                                this.menuItem61,
                                                this.menuItem62
                                            });
       this.menuItem57.Text = "&Anzeige";
       this.menuItem57.Popup += this.menuItem57_Popup;
       //
       // menuItem59
       //
       this.menuItem59.Index = 0;
       this.menuItem59.Shortcut = System.Windows.Forms.Shortcut.CtrlH;
       this.menuItem59.Text = "History";
       this.menuItem59.Click += this.menuItem59_Click;
       //
       // menuItem65
       //
       this.menuItem65.Index = 1;
       this.menuItem65.Shortcut = System.Windows.Forms.Shortcut.CtrlR;
       this.menuItem65.Text = "Fernsteuerung";
       this.menuItem65.Click += this.menuItem65_Click;
       //
       // menuItem70
       //
       this.menuItem70.Index = 2;
       this.menuItem70.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftS;
       this.menuItem70.Text = "Style Editor";
       this.menuItem70.Click += this.menuItem70_Click;
       //
       // menuItem58
       //
       this.menuItem58.Index = 3;
       this.menuItem58.Text = "-";
       //
       // menuItem54
       //
       this.menuItem54.Index = 4;
       this.menuItem54.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem55,
                                                this.menuItem56
                                            });
       this.menuItem54.Text = "Anzeige&schirm";
       //
       // menuItem55
       //
       this.menuItem55.Index = 0;
       this.menuItem55.Text = "Primär";
       this.menuItem55.Click += this.menuItem55_Click;
       //
       // menuItem56
       //
       this.menuItem56.Index = 1;
       this.menuItem56.Text = "Sekundär";
       this.menuItem56.Click += this.menuItem56_Click;
       //
       // menuItem61
       //
       this.menuItem61.Index = 5;
       this.menuItem61.Shortcut = System.Windows.Forms.Shortcut.CtrlB;
       this.menuItem61.Text = "Anzeige aus&blenden";
       this.menuItem61.Click += this.menuItem61_Click;
       //
       // menuItem62
       //
       this.menuItem62.Index = 6;
       this.menuItem62.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftB;
       this.menuItem62.Text = "Anzeige &schliessen";
       this.menuItem62.Click += this.menuItem62_Click;
       //
       // menuItem10
       //
       this.menuItem10.Index = 3;
       this.menuItem10.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem26,
                                                this.menuItem23,
                                                this.menuItem27,
                                                this.menuItem11,
                                                this.menuItem22,
                                                this.menuItem12
                                            });
       this.menuItem10.Text = "aktuelle &Liste";
       this.menuItem10.Visible = false;
       //
       // menuItem26
       //
       this.menuItem26.Index = 0;
       this.menuItem26.Text = "&Anzeigen!";
       this.menuItem26.Click += this.menuItem26_Click;
       //
       // menuItem23
       //
       this.menuItem23.Index = 1;
       this.menuItem23.MenuItems.AddRange(new[]
                                            {
                                                this.menuItem28
                                            });
       this.menuItem23.Text = "Liste &löschen";
       //
       // menuItem28
       //
       this.menuItem28.Index = 0;
       this.menuItem28.Text = "&Ok";
       this.menuItem28.Click += this.menuItem28_Click;
       //
       // menuItem27
       //
       this.menuItem27.Index = 2;
       this.menuItem27.Text = "-";
       //
       // menuItem11
       //
       this.menuItem11.Index = 3;
       this.menuItem11.Text = "Neue Liste…";
       this.menuItem11.Click += this.menuItem11_Click;
       //
       // menuItem22
       //
       this.menuItem22.Index = 4;
       this.menuItem22.Text = "Liste &importieren…";
       this.menuItem22.Click += this.menuItem22_Click;
       //
       // menuItem12
       //
       this.menuItem12.Index = 5;
       this.menuItem12.Text = "Liste &exportieren…";
       this.menuItem12.Click += this.menuItem12_Click;
       //
       // menuItem4
       //
       this.menuItem4.Index = 4;
       this.menuItem4.MenuItems.AddRange(new[]
                                           {
                                               this.menuItem5,
                                               this.menuItem33,
                                               this.menuItem29,
                                               this.menuItem32
                                           });
       this.menuItem4.Text = "&Hilfe";
       //
       // menuItem5
       //
       this.menuItem5.Index = 0;
       this.menuItem5.Shortcut = System.Windows.Forms.Shortcut.F1;
       this.menuItem5.Text = "&Inhalt";
       this.menuItem5.Click += this.menuItem5_Click;
       //
       // menuItem33
       //
       this.menuItem33.Index = 1;
       this.menuItem33.Text = "In&fo";
       this.menuItem33.Click += this.menuItem33_Click;
       //
       // menuItem29
       //
       this.menuItem29.Index = 2;
       this.menuItem29.Text = "-";
       this.menuItem29.Visible = false;
       //
       // menuItem32
       //
       this.menuItem32.Index = 3;
       this.menuItem32.Shortcut = System.Windows.Forms.Shortcut.CtrlD;
       this.menuItem32.Text = "&Debug Console";
       this.menuItem32.Visible = false;
       this.menuItem32.Click += this.menuItem32_Click;
       //
       // menuItem37
       //
       this.menuItem37.Index = 5;
       this.menuItem37.Shortcut = System.Windows.Forms.Shortcut.F12;
       this.menuItem37.Text = "Präsentation b&eenden";
       this.menuItem37.Visible = false;
       this.menuItem37.Click += this.menuItem35_Click;
       //
       // statusBar1
       //
       this.statusBar1.Location = new System.Drawing.Point(0, 449);
       this.statusBar1.Name = "statusBar1";
       this.statusBar1.Panels.AddRange(new[]
                                         {
                                             this.statusBarPanel1,
                                             this.statusBarPanel2
                                         });
       this.statusBar1.ShowPanels = true;
       this.statusBar1.Size = new System.Drawing.Size(950, 18);
       this.statusBar1.TabIndex = 1;
       this.statusBar1.Text = "d";
       //
       // statusBarPanel1
       //
       this.statusBarPanel1.Name = "statusBarPanel1";
       this.statusBarPanel1.Text = "cur state/action";
       this.statusBarPanel1.Width = 250;
       //
       // statusBarPanel2
       //
       this.statusBarPanel2.Name = "statusBarPanel2";
       this.statusBarPanel2.Text = "cur xml-path / options";
       this.statusBarPanel2.Width = 330;
       //
       // contextMenu1
       //
       this.contextMenu1.MenuItems.AddRange(new[]
                                              {
                                                  this.menuItem6,
                                                  this.menuItem7,
                                                  this.menuItem39,
                                                  this.menuItem8,
                                                  this.menuItem25
                                              });
       //
       // menuItem6
       //
       this.menuItem6.Index = 0;
       this.menuItem6.Text = "&Anzeigen!";
       this.menuItem6.Click += this.menuItem6_Click;
       //
       // menuItem7
       //
       this.menuItem7.Index = 1;
       this.menuItem7.Text = "&Editieren…";
       this.menuItem7.Click += this.menuItem7_Click;
       //
       // menuItem39
       //
       this.menuItem39.Index = 2;
       this.menuItem39.Text = "&Löschen";
       this.menuItem39.Click += this.menuItem39_Click;
       //
       // menuItem8
       //
       this.menuItem8.Index = 3;
       this.menuItem8.Text = "Zu aktueller &Liste hinzufügen";
       this.menuItem8.Click += this.menuItem8_Click;
       //
       // menuItem25
       //
       this.menuItem25.Index = 4;
       this.menuItem25.Text = "Überse&tzungen";
       //
       // contextMenu2
       //
       this.contextMenu2.MenuItems.AddRange(new[]
                                              {
                                                  this.menuItem60,
                                                  this.menuItem66,
                                                  this.menuItem67,
                                                  this.menuItem9
                                              });
       //
       // menuItem60
       //
       this.menuItem60.Index = 0;
       this.menuItem60.Text = "&Anzeigen!";
       this.menuItem60.Click += this.menuItem60_Click;
       //
       // menuItem66
       //
       this.menuItem66.Index = 1;
       this.menuItem66.Text = "&Editieren…";
       this.menuItem66.Click += this.menuItem66_Click;
       //
       // menuItem67
       //
       this.menuItem67.Index = 2;
       this.menuItem67.Text = "&Löschen";
       this.menuItem67.Click += this.menuItem67_Click;
       //
       // menuItem9
       //
       this.menuItem9.Index = 3;
       this.menuItem9.Text = "Zu aktueller &Liste hinzufügen";
       this.menuItem9.Click += this.menuItem9_Click;
       //
       // GUI
       //
       this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
       this.BackColor = System.Drawing.Color.WhiteSmoke;
       this.ClientSize = new System.Drawing.Size(950, 467);
       this.Controls.Add(this.tabControl1);
       this.Controls.Add(this.statusBar1);
       this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0)));
       this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
       this.MaximizeBox = false;
       this.Menu = this.mainMenu1;
       this.MinimumSize = new System.Drawing.Size(500, 300);
       this.Name = "GUI";
       this.Text = "lyra";
       this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
       this.Activated += this.MeGotFocus;
       this.Closing += this.Exit;
       this.tabControl1.ResumeLayout(false);
       this.tabPage2.ResumeLayout(false);
       this.searchSplitter.Panel1.ResumeLayout(false);
       this.searchSplitter.Panel2.ResumeLayout(false);
       this.searchSplitter.ResumeLayout(false);
       this.panel4.ResumeLayout(false);
       this.panel4.PerformLayout();
       this.searchPaneTop.ResumeLayout(false);
       this.searchPaneTop.PerformLayout();
       ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
       ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
       this.panel1.ClientArea.ResumeLayout(false);
       this.panel1.ClientArea.PerformLayout();
       this.panel1.ResumeLayout(false);
       this.tabPage1.ResumeLayout(false);
       this.allSongsSplitter.Panel1.ResumeLayout(false);
       this.allSongsSplitter.Panel2.ResumeLayout(false);
       this.allSongsSplitter.ResumeLayout(false);
       this.controlPaneRight.ClientArea.ResumeLayout(false);
       this.controlPaneRight.ResumeLayout(false);
       this.tabPage3.ResumeLayout(false);
       this.persListSplitter.Panel1.ResumeLayout(false);
       this.persListSplitter.Panel2.ResumeLayout(false);
       this.persListSplitter.ResumeLayout(false);
       this.panel8.ResumeLayout(false);
       this.moveUpDownPanel.ResumeLayout(false);
       this.panel7.ClientArea.ResumeLayout(false);
       this.panel7.ClientArea.PerformLayout();
       this.panel7.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel1)).EndInit();
       ((System.ComponentModel.ISupportInitialize)(this.statusBarPanel2)).EndInit();
       this.ResumeLayout(false);
 }
コード例 #13
0
 private void InitializeComponent()
 {
     Infragistics.Win.Appearance appearance6 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridBand   ultraGridBand1   = new Infragistics.Win.UltraWinGrid.UltraGridBand("Band 0", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("JoppdaID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OznakaIzvjesca");
     Infragistics.Win.Appearance appearance8 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("VrstaIzvjesca");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BrojOsoba");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("BrojRedaka");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ObracunID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("DDObracunID");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("OznakaIzvjescaDatum");
     Infragistics.Win.Appearance appearance9  = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance10 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance11 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance12 = new Infragistics.Win.Appearance();
     this.frmPregledJOPPDObracuna_Fill_Panel = new System.Windows.Forms.Panel();
     this.btnZatvori        = new Infragistics.Win.Misc.UltraButton();
     this.btnObrisiObrazac  = new Infragistics.Win.Misc.UltraButton();
     this.btnOdaberiObrazac = new Infragistics.Win.Misc.UltraButton();
     this.UltraGrid1        = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.frmPregledJOPPDObracuna_Fill_Panel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.UltraGrid1)).BeginInit();
     this.SuspendLayout();
     //
     // frmPregledJOPPDObracuna_Fill_Panel
     //
     this.frmPregledJOPPDObracuna_Fill_Panel.Controls.Add(this.btnZatvori);
     this.frmPregledJOPPDObracuna_Fill_Panel.Controls.Add(this.btnObrisiObrazac);
     this.frmPregledJOPPDObracuna_Fill_Panel.Controls.Add(this.btnOdaberiObrazac);
     this.frmPregledJOPPDObracuna_Fill_Panel.Controls.Add(this.UltraGrid1);
     this.frmPregledJOPPDObracuna_Fill_Panel.Cursor   = System.Windows.Forms.Cursors.Default;
     this.frmPregledJOPPDObracuna_Fill_Panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.frmPregledJOPPDObracuna_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.frmPregledJOPPDObracuna_Fill_Panel.Name     = "frmPregledJOPPDObracuna_Fill_Panel";
     this.frmPregledJOPPDObracuna_Fill_Panel.Size     = new System.Drawing.Size(961, 626);
     this.frmPregledJOPPDObracuna_Fill_Panel.TabIndex = 0;
     //
     // btnZatvori
     //
     this.btnZatvori.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
     this.btnZatvori.Location    = new System.Drawing.Point(289, 10);
     this.btnZatvori.Name        = "btnZatvori";
     this.btnZatvori.Size        = new System.Drawing.Size(123, 23);
     this.btnZatvori.TabIndex    = 47;
     this.btnZatvori.Text        = "Zatvori";
     this.btnZatvori.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
     this.btnZatvori.Click      += new System.EventHandler(this.btnZatvori_Click);
     //
     // btnObrisiObrazac
     //
     this.btnObrisiObrazac.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
     this.btnObrisiObrazac.Location    = new System.Drawing.Point(149, 10);
     this.btnObrisiObrazac.Name        = "btnObrisiObrazac";
     this.btnObrisiObrazac.Size        = new System.Drawing.Size(123, 23);
     this.btnObrisiObrazac.TabIndex    = 46;
     this.btnObrisiObrazac.Text        = "Obriši obrazac";
     this.btnObrisiObrazac.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
     this.btnObrisiObrazac.Click      += new System.EventHandler(this.btnObrisiObrazac_Click);
     //
     // btnOdaberiObrazac
     //
     this.btnOdaberiObrazac.ButtonStyle = Infragistics.Win.UIElementButtonStyle.WindowsVistaButton;
     this.btnOdaberiObrazac.Location    = new System.Drawing.Point(9, 10);
     this.btnOdaberiObrazac.Name        = "btnOdaberiObrazac";
     this.btnOdaberiObrazac.Size        = new System.Drawing.Size(123, 23);
     this.btnOdaberiObrazac.TabIndex    = 45;
     this.btnOdaberiObrazac.Text        = "Odaberi obrazac";
     this.btnOdaberiObrazac.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
     this.btnOdaberiObrazac.Click      += new System.EventHandler(this.btnOdaberiObrazac_Click);
     //
     // UltraGrid1
     //
     appearance6.BackColor = System.Drawing.Color.White;
     this.UltraGrid1.DisplayLayout.Appearance = appearance6;
     ultraGridColumn1.AutoCompleteMode        = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn1.CellActivation          = Infragistics.Win.UltraWinGrid.Activation.Disabled;
     ultraGridColumn1.Header.VisiblePosition  = 0;
     ultraGridColumn1.Hidden                 = true;
     ultraGridColumn2.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn2.CellActivation         = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     appearance8.FontData.BoldAsString       = "True";
     ultraGridColumn2.CellAppearance         = appearance8;
     ultraGridColumn2.Header.Caption         = "Oznaka izvješća";
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.Width                  = 114;
     ultraGridColumn3.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn3.CellActivation         = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn3.Header.Caption         = "Vrsta izvješća";
     ultraGridColumn3.Header.VisiblePosition = 2;
     ultraGridColumn3.Width                  = 144;
     ultraGridColumn4.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn4.CellActivation         = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn4.Header.Caption         = "Broj osoba";
     ultraGridColumn4.Header.VisiblePosition = 3;
     ultraGridColumn4.Width                  = 75;
     ultraGridColumn5.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn5.CellActivation         = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn5.Header.Caption         = "Broj redaka";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.Width                  = 96;
     ultraGridColumn6.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn6.CellActivation         = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn6.Header.Caption         = "OD - obračun dohotka";
     ultraGridColumn6.Header.VisiblePosition = 5;
     ultraGridColumn6.Width                  = 140;
     ultraGridColumn7.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn7.CellActivation         = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn7.Header.Caption         = "OH - obračun drugog dohotka";
     ultraGridColumn7.Header.VisiblePosition = 6;
     ultraGridColumn7.Width                  = 170;
     ultraGridColumn8.AutoCompleteMode       = Infragistics.Win.AutoCompleteMode.Append;
     ultraGridColumn8.CellActivation         = Infragistics.Win.UltraWinGrid.Activation.NoEdit;
     ultraGridColumn8.Format                 = "dd.MM.yyyy";
     ultraGridColumn8.Header.Caption         = "Izvješće na dan";
     ultraGridColumn8.Header.VisiblePosition = 7;
     ultraGridBand1.Columns.AddRange(new object[] {
         ultraGridColumn1,
         ultraGridColumn2,
         ultraGridColumn3,
         ultraGridColumn4,
         ultraGridColumn5,
         ultraGridColumn6,
         ultraGridColumn7,
         ultraGridColumn8
     });
     ultraGridBand1.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.UltraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.UltraGrid1.DisplayLayout.Override.AllowAddNew     = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.UltraGrid1.DisplayLayout.Override.AllowDelete     = Infragistics.Win.DefaultableBoolean.True;
     this.UltraGrid1.DisplayLayout.Override.AllowGroupBy    = Infragistics.Win.DefaultableBoolean.True;
     this.UltraGrid1.DisplayLayout.Override.AllowUpdate     = Infragistics.Win.DefaultableBoolean.True;
     this.UltraGrid1.DisplayLayout.Override.BorderStyleCell = Infragistics.Win.UIElementBorderStyle.None;
     appearance9.BackColor = System.Drawing.Color.Transparent;
     this.UltraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance9;
     this.UltraGrid1.DisplayLayout.Override.CellClickAction    = Infragistics.Win.UltraWinGrid.CellClickAction.RowSelect;
     this.UltraGrid1.DisplayLayout.Override.CellPadding        = 3;
     appearance10.TextHAlignAsString = "Left";
     this.UltraGrid1.DisplayLayout.Override.HeaderAppearance  = appearance10;
     this.UltraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     appearance11.BorderColor        = System.Drawing.Color.LightGray;
     appearance11.TextVAlignAsString = "Middle";
     this.UltraGrid1.DisplayLayout.Override.RowAppearance = appearance11;
     this.UltraGrid1.DisplayLayout.Override.RowSelectors  = Infragistics.Win.DefaultableBoolean.False;
     appearance12.BackColor   = System.Drawing.Color.LightSteelBlue;
     appearance12.BorderColor = System.Drawing.Color.Black;
     appearance12.ForeColor   = System.Drawing.Color.Black;
     this.UltraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance12;
     this.UltraGrid1.DisplayLayout.Override.SelectTypeCell        = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.UltraGrid1.DisplayLayout.Override.SelectTypeCol         = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.UltraGrid1.DisplayLayout.Override.SelectTypeGroupByRow  = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.UltraGrid1.DisplayLayout.Override.SelectTypeRow         = Infragistics.Win.UltraWinGrid.SelectType.Extended;
     this.UltraGrid1.DisplayLayout.RowConnectorStyle = Infragistics.Win.UltraWinGrid.RowConnectorStyle.None;
     this.UltraGrid1.DisplayLayout.ScrollStyle       = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.UltraGrid1.DisplayLayout.TabNavigation     = Infragistics.Win.UltraWinGrid.TabNavigation.NextControlOnLastCell;
     this.UltraGrid1.DisplayLayout.ViewStyleBand     = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy;
     this.UltraGrid1.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     this.UltraGrid1.Location   = new System.Drawing.Point(9, 41);
     this.UltraGrid1.Name       = "UltraGrid1";
     this.UltraGrid1.Size       = new System.Drawing.Size(940, 585);
     this.UltraGrid1.TabIndex   = 0;
     this.UltraGrid1.KeyDown   += new System.Windows.Forms.KeyEventHandler(this.UltraGrid1_KeyDown);
     this.UltraGrid1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.UltraGrid1_MouseDown);
     //
     // frmPregledObrazacaOPPD
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(961, 626);
     this.Controls.Add(this.frmPregledJOPPDObracuna_Fill_Panel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmPregledObrazacaOPPD";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Pregled JOPPD obrazaca";
     this.frmPregledJOPPDObracuna_Fill_Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.UltraGrid1)).EndInit();
     this.ResumeLayout(false);
 }