⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ratesofreturnform.designer.cs

📁 中文名:Windows Forms 程序设计 英文名:Windows Forms Programming in c# 作者: Chris Sells 翻译: 荣耀 蒋贤哲 出版社:人民
💻 CS
📖 第 1 页 / 共 2 页
字号:
      this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
      // 
      // dataGridView
      // 
      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.dataGridView.AutoGenerateColumns = false;
      this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.Period,
            this.ReturnRate,
            this.Principle});
      this.dataGridView.DataSource = this.PeriodReturnBindingSource;
      this.dataGridView.Location = new System.Drawing.Point(12, 55);
      this.dataGridView.Name = "dataGridView";
      this.dataGridView.Size = new System.Drawing.Size(375, 128);
      this.dataGridView.TabIndex = 3;
      // 
      // Period
      // 
      this.Period.DataPropertyName = "Period";
      this.Period.HeaderText = "Period";
      this.Period.Name = "Period";
      // 
      // ReturnRate
      // 
      this.ReturnRate.DataPropertyName = "ReturnRate";
      dataGridViewCellStyle1.Format = "#.000%;-#.000%;#0.000%";
      dataGridViewCellStyle1.FormatProvider = new System.Globalization.CultureInfo("en-US");
      this.ReturnRate.DefaultCellStyle = dataGridViewCellStyle1;
      this.ReturnRate.HeaderText = "ReturnRate";
      this.ReturnRate.Name = "ReturnRate";
      // 
      // Principle
      // 
      this.Principle.DataPropertyName = "Principle";
      dataGridViewCellStyle2.BackColor = System.Drawing.Color.LightGray;
      dataGridViewCellStyle2.Format = "$#,0.00;-$#,0.00;\"\"";
      dataGridViewCellStyle2.FormatProvider = new System.Globalization.CultureInfo("en-US");
      dataGridViewCellStyle2.NullValue = null;
      this.Principle.DefaultCellStyle = dataGridViewCellStyle2;
      this.Principle.HeaderText = "Principle";
      this.Principle.Name = "Principle";
      this.Principle.ReadOnly = true;
      // 
      // PeriodReturnBindingSource
      // 
      this.PeriodReturnBindingSource.DataSource = typeof(SDIRatesOfReturn.PeriodReturn);
      this.PeriodReturnBindingSource.ListChanged += new System.ComponentModel.ListChangedEventHandler(this.PeriodReturnBindingSource_ListChanged);
      // 
      // annualizedStatusStrip
      // 
      this.annualizedStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.annualizedToolStripStatusLabel});
      this.annualizedStatusStrip.Location = new System.Drawing.Point(0, 217);
      this.annualizedStatusStrip.Name = "annualizedStatusStrip";
      this.annualizedStatusStrip.Size = new System.Drawing.Size(399, 22);
      this.annualizedStatusStrip.TabIndex = 4;
      this.annualizedStatusStrip.Text = "statusStrip1";
      // 
      // annualizedToolStripStatusLabel
      // 
      this.annualizedToolStripStatusLabel.Name = "annualizedToolStripStatusLabel";
      this.annualizedToolStripStatusLabel.Size = new System.Drawing.Size(0, 17);
      // 
      // averageStatusStrip
      // 
      this.averageStatusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.averageToolStripStatusLabel});
      this.averageStatusStrip.Location = new System.Drawing.Point(0, 195);
      this.averageStatusStrip.Name = "averageStatusStrip";
      this.averageStatusStrip.Size = new System.Drawing.Size(399, 22);
      this.averageStatusStrip.SizingGrip = false;
      this.averageStatusStrip.TabIndex = 5;
      this.averageStatusStrip.Text = "statusStrip2";
      // 
      // averageToolStripStatusLabel
      // 
      this.averageToolStripStatusLabel.Name = "averageToolStripStatusLabel";
      this.averageToolStripStatusLabel.Size = new System.Drawing.Size(0, 17);
      // 
      // fileDocument
      // 
      this.fileDocument.FileExtension = "ror";
      this.fileDocument.FileExtensionDescription = "Average and annualized returns";
      this.fileDocument.FileNewMenuItem = this.newToolStripMenuItem;
      this.fileDocument.FileOpenMenuItem = this.openToolStripMenuItem;
      this.fileDocument.FileSaveAsMenuItem = this.saveAsToolStripMenuItem;
      this.fileDocument.FileSaveCopyAsMenuItem = this.saveCopyAsToolStripMenuItem;
      this.fileDocument.FileSaveMenuItem = this.saveToolStripMenuItem;
      this.fileDocument.HostingForm = this;
      this.fileDocument.IconResourceIndex = "1";
      this.fileDocument.RegisterFileExtensionWithShell = true;
      this.fileDocument.ReadDocument += new FileDocumentControlLibrary.SerializeDocumentEventHandler(this.fileDocument_ReadDocument);
      this.fileDocument.NewDocument += new System.EventHandler(this.fileDocument_NewDocument);
      this.fileDocument.WriteDocument += new FileDocumentControlLibrary.SerializeDocumentEventHandler(this.fileDocument_WriteDocument);
      // 
      // mruMenuManager
      // 
      this.mruMenuManager.MruListMenu = this.mruToolStripMenuItem;
      this.mruMenuManager.SettingsKey = "MruMenuManager.SDIClientMruItems";
      this.mruMenuManager.MruMenuItemFileMissing += new MruControlLibrary.MruMenuItemFileMissingEventHandler(this.mruMenuManager_MruMenuItemFileMissing);
      this.mruMenuManager.MruMenuItemClick += new MruControlLibrary.MruMenuItemClickEventHandler(this.mruMenuManager_MruMenuItemClick);
      // 
      // dragAndDropFileComponent
      // 
      this.dragAndDropFileComponent.HostingForm = this;
      this.dragAndDropFileComponent.FileDropped += new DragAndDropFileControlLibrary.FileDroppedEventHandler(this.dragAndDropFileComponent_FileDropped);
      // 
      // RatesOfReturnForm
      // 
      this.ClientSize = new System.Drawing.Size(399, 239);
      this.Controls.Add(this.averageStatusStrip);
      this.Controls.Add(this.annualizedStatusStrip);
      this.Controls.Add(this.dataGridView);
      this.Controls.Add(this.menuStrip);
      this.Controls.Add(this.label1);
      this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
      this.Name = "RatesOfReturnForm";
      this.Text = "SDI Rates of Return";
      this.menuStrip.ResumeLayout(false);
      this.menuStrip.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.PeriodReturnBindingSource)).EndInit();
      this.annualizedStatusStrip.ResumeLayout(false);
      this.annualizedStatusStrip.PerformLayout();
      this.averageStatusStrip.ResumeLayout(false);
      this.averageStatusStrip.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.fileDocument)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.mruMenuManager)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.dragAndDropFileComponent)).EndInit();
      this.ResumeLayout(false);
      this.PerformLayout();

    }

    #endregion

    private System.Windows.Forms.Label label1;
    private System.Windows.Forms.MenuStrip menuStrip;
    private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
    private System.Windows.Forms.ToolStripMenuItem newToolStripMenuItem;
    private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem;
    private System.Windows.Forms.ToolStripMenuItem saveToolStripMenuItem;
    private System.Windows.Forms.ToolStripMenuItem saveAsToolStripMenuItem;
    private System.Windows.Forms.ToolStripMenuItem saveCopyAsToolStripMenuItem;
    private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
    private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
    private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem;
    private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem;
    private System.Windows.Forms.DataGridView dataGridView;
    private System.Windows.Forms.StatusStrip averageStatusStrip;
    private System.Windows.Forms.StatusStrip annualizedStatusStrip;
    private System.Windows.Forms.ToolStripStatusLabel averageToolStripStatusLabel;
    private System.Windows.Forms.ToolStripStatusLabel annualizedToolStripStatusLabel;
    private System.Windows.Forms.ToolStripMenuItem mruToolStripMenuItem;
    private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
    private FileDocumentControlLibrary.FileDocument fileDocument;
    private MruControlLibrary.MruMenuManager mruMenuManager;
    private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
    private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
    private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
    private System.Windows.Forms.BindingSource PeriodReturnBindingSource;
    private System.Windows.Forms.DataGridViewTextBoxColumn Period;
    private System.Windows.Forms.DataGridViewTextBoxColumn ReturnRate;
    private System.Windows.Forms.DataGridViewTextBoxColumn Principle;
    private DragAndDropFileControlLibrary.DragAndDropFileComponent dragAndDropFileComponent;
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -