length什么意思
length 英[lɛŋkθ] 美[leŋθ] n. 长度,长;时间的长短;(语)音长;一段,一节 名词复数:lengths [例句]The french annexed length and mass.法国则包揽了长度和质量的标准。
PSP MAPTHIS地图怎么更新
《MapThis!》有对应HOLUX和GPS-290等版本。这里我们只讨论GPS-290这个GPS定位仪的版本。安装:安装《Mapthis!》的PSP最好用3.40OE或以上版本,本人试过在3.03OE系统上安装,一直死机。《Mapthis!》现在网上有好几个版本,我发现装mapthis290_0497汉化版,使用Mapdownloader 0.50用51ditu制作的地图都没问题.但是用Google Map制作出来的地图会出现贴图错误.如果安装的是最新的0499版《Mapthis!》,使用Google Map制作出来的地图完全正常,但是用51ditu的地图却会花屏...自己根据需要选择吧.下载你需要的《Mapthis!》,解压后复制到记忆棒里的PSP\GAME340文件夹里.上面下载的版本不包含地图的,所以还不能运行程序。地图可以在网上下载别人制作好的地图,也能自己制作需要的地图。地图的安装要放在《MapThis!》里的的maps文件夹内,地图文件夹按照“_xxxx”的形式命名。安装好地图后,接上GPS-290就可以在PSP里运行《Mapthis!》了。(没GPS接收器也能运行,可以当地图参考)全国大部分城市的现成地图下载: 运行此软件需要.NET Framework 2.0的支持.在电脑上运行Mapdownloader 0.5.0,首先在上面的设定目录里设置地图的下载目录.如果省略不设的话系统会以地图的坐标自动建立
怎么把一个窗体中的值传到另一个窗体中的textbox中
Form1
using System;using System.Windows.Forms;namespace PassDataFromChildToParent{ public partial class FrmParent : Form { public string ParentText { get { return this.textBox1.Text; } set { this.textBox1.Text = value; } } public FrmParent() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { FrmChild frm = new FrmChild(this); frm.ShowDialog(); //1.直接访问控件值 //this.textBox2.Text = (frm.Controls[“monthCalendar1“] as MonthCalendar).SelectionStart.ToShortDateString(); //2.访问属性值 this.textBox2.Text = frm.ChileDate.ToShortDateString(); } }}
Form2:
using System;using System.Windows.Forms;namespace PassDataFromChildToParent{ public partial class FrmChild : Form { private FrmParent _ParentForm; public DateTime ChileDate { get { return this.monthCalendar1.SelectionStart; } set { this.monthCalendar1.SelectionStart = value; } } public FrmChild(FrmParent parent) { InitializeComponent(); _ParentForm = parent; } private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e) { //1.设置控件值 //(_ParentForm.Controls[“textBox1“] as TextBox).Text = monthCalendar1.SelectionStart.ToShortDateString(); //2.设置属性值 _ParentForm.ParentText = monthCalendar1.SelectionStart.ToShortDateString(); } }}