@宁波-小董 2012-01-28 为代码生成器XCoder添加“添加模型”功能,彻底抛弃数据库设计 1.初步实现比较简单,只支持几种常见的数据类型 2.初步测试基本可以运行和导出 3.对表单的一些验证和输入要进行验证,不然容易出错。会继续完善
asxinyu 编写于 2013-01-28 19:21:50
X
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace XCoder
{
    public partial class BaseForm : Form
    {
        public BaseForm()
        {
            InitializeComponent();
        }
    }
}