29 lines
627 B
C#
29 lines
627 B
C#
|
using Sunny.UI;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Data;
|
|||
|
using System.Drawing;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Forms;
|
|||
|
|
|||
|
namespace LeatherApp.Page
|
|||
|
{
|
|||
|
public partial class FenJuanFrm : UIEditForm
|
|||
|
{
|
|||
|
public string Reel;
|
|||
|
public FenJuanFrm()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
this.btnCancel.Visible = false;
|
|||
|
}
|
|||
|
|
|||
|
private void btnOK_Click(object sender, EventArgs e)
|
|||
|
{
|
|||
|
Reel = this.tbReel.Text;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|