31 lines
652 B
C#
31 lines
652 B
C#
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 Lskj.PubUtils.Upload
|
|
{
|
|
public partial class frmUpload : Form
|
|
{
|
|
public frmUpload()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public string eclspeTime { get; set; }
|
|
public string speed { get; set; }
|
|
public string state { get; set; }
|
|
|
|
public void setState()
|
|
{
|
|
lblTime.Text = eclspeTime;
|
|
lblSpeed.Text = speed;
|
|
lblState.Text = state;
|
|
}
|
|
}
|
|
}
|