using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace CvMatch.Game2D
{
public partial class frmAutoSize : Form
{
public frmAutoSize()
{
InitializeComponent();
}
Dictionary<string, Rectangle> dic = new Dictionary<string, Rectangle>();//原始控件大小
float x = 0;//原始大小
float y = 0;
private void frmAutoSize_Load(object sender, EventArgs e)
{
x = this.Size.Width;
y = this.Size.Height;
AddDic(this);
}
/// <summary>
/// /添加数据
/// </summary>
/// <param nam

最低0.47元/天 解锁文章
2124

被折叠的 条评论
为什么被折叠?



