fclient.cs
上传用户:yan_wy
上传日期:2007-06-09
资源大小:112k
文件大小:3k
源码类别:

ICQ/即时通讯

开发平台:

C#

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. namespace qq
  7. {
  8. /// <summary>
  9. /// fclient 的摘要说明。
  10. /// </summary>
  11. public class fclient : System.Windows.Forms.Form
  12. {
  13. UserControl1 control;
  14. private System.Windows.Forms.Button button1;
  15. private System.Windows.Forms.Label label1;
  16. private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  17. /// <summary>
  18. /// 必需的设计器变量。
  19. /// </summary>
  20. private System.ComponentModel.Container components = null;
  21. public fclient(UserControl1 us)
  22. {
  23. //
  24. // Windows 窗体设计器支持所必需的
  25. //
  26. control=us;
  27. InitializeComponent();
  28. //
  29. // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
  30. //
  31. }
  32. /// <summary>
  33. /// 清理所有正在使用的资源。
  34. /// </summary>
  35. protected override void Dispose( bool disposing )
  36. {
  37. if( disposing )
  38. {
  39. if(components != null)
  40. {
  41. components.Dispose();
  42. }
  43. }
  44. base.Dispose( disposing );
  45. }
  46. #region Windows 窗体设计器生成的代码
  47. /// <summary>
  48. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  49. /// 此方法的内容。
  50. /// </summary>
  51. private void InitializeComponent()
  52. {
  53. this.button1 = new System.Windows.Forms.Button();
  54. this.label1 = new System.Windows.Forms.Label();
  55. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  56. this.SuspendLayout();
  57. // 
  58. // button1
  59. // 
  60. this.button1.Location = new System.Drawing.Point(80, 136);
  61. this.button1.Name = "button1";
  62. this.button1.Size = new System.Drawing.Size(96, 23);
  63. this.button1.TabIndex = 0;
  64. this.button1.Text = "接受";
  65. this.button1.Click += new System.EventHandler(this.button1_Click);
  66. // 
  67. // label1
  68. // 
  69. this.label1.Location = new System.Drawing.Point(80, 48);
  70. this.label1.Name = "label1";
  71. this.label1.Size = new System.Drawing.Size(100, 64);
  72. this.label1.TabIndex = 2;
  73. this.label1.Text = "有好友传文件给你";
  74. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  75. // 
  76. // fclient
  77. // 
  78. this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
  79. this.ClientSize = new System.Drawing.Size(264, 200);
  80. this.Controls.Add(this.label1);
  81. this.Controls.Add(this.button1);
  82. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  83. this.MaximizeBox = false;
  84. this.Name = "fclient";
  85. this.Text = "fclient";
  86. this.ResumeLayout(false);
  87. }
  88. #endregion
  89. private void button1_Click(object sender, System.EventArgs e)
  90. {
  91. this.DialogResult=DialogResult.OK;
  92. }
  93. private void button2_Click(object sender, System.EventArgs e)
  94. {
  95. this.DialogResult=DialogResult.Cancel;
  96. }
  97. }
  98. }