请大家帮助谢谢

解决方案 »

  1.   

    真厉害,觉得奇怪:你为什么不上来就问,请提供WINDOWS源代码呢?
      

  2.   

    using System;
    using System.Drawing;
    using System.Collections;
    using System.ComponentModel;
    using System.Windows.Forms;
    using System.Data;namespace WindowsApplication1
    {
    /// <summary>
    /// Form1 的摘要说明。
    /// </summary>
    public class Form1 : System.Windows.Forms.Form
    {
    /// <summary>
    /// 必需的设计器变量。
    /// </summary>
    private System.ComponentModel.Container components = null; public Form1()
    {
    //
    // Windows 窗体设计器支持所必需的
    //
    InitializeComponent(); //
    // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
    //
    } /// <summary>
    /// 清理所有正在使用的资源。
    /// </summary>
    protected override void Dispose( bool disposing )
    {
    if( disposing )
    {
    if (components != null) 
    {
    components.Dispose();
    }
    }
    base.Dispose( disposing );
    } #region Windows 窗体设计器生成的代码
    /// <summary>
    /// 设计器支持所需的方法 - 不要使用代码编辑器修改
    /// 此方法的内容。
    /// </summary>
    private void InitializeComponent()
    {
    // 
    // Form1
    // 
    this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
    this.ClientSize = new System.Drawing.Size(368, 318);
    this.Name = "Form1";
    this.Text = "Form1"; }
    #endregion /// <summary>
    /// 应用程序的主入口点。
    /// </summary>
    [STAThread]
    static void Main() 
    {
    Application.Run(new Form1());
    }
    }
    }
      

  3.   

    请提供WINDOWS源代码................楼上那位给了个空白Form
    那是VC.Net的界面?楼主到底要的是什么?
      

  4.   

    我当然是要知道怎样编写 VC 编辑器这类高级界面的C#源代码
      

  5.   

    随便copy别人的一个不久完了,最好不要带数据库的就行...
    建议搂住还是好好看书吧
      

  6.   

    上面那些代码是否能够实现那是Visual studio界面的Coolbar控制条功能
      

  7.   

    巧了
    看看我的文章
    http://blog.csdn.net/flashelf/archive/2005/03/13/318852.aspx看看你要的是这个不?如果要完全一样还要自己 重画一些控件。等我写下一篇文章的时候 也许会 有。