Beispiel #1
0
 public zikuview(Myapp_inf app, int zimoindex_, Formchuantiinf f)
 {
     this.fc        = f;
     this.zimoindex = zimoindex_;
     this.Myapp     = app;
     this.InitializeComponent();
     this.Language();
     base.Icon = datasize.Myico;
 }
Beispiel #2
0
 public picselect(Myapp_inf app, Formchuantiinf fc_)
 {
     this.fc          = fc_;
     this.Myapp       = app;
     this.EnableGlass = false;
     this.InitializeComponent();
     this.Language();
     base.Icon = datasize.Myico;
 }
Beispiel #3
0
 public zikucreat(Formchuantiinf zi, int encode_, Myapp_inf app)
 {
     this.Myapp  = app;
     this.fc     = zi;
     this.Encode = encode_;
     if (this.Encode == 0 || this.Encode >= datasize.encodes_App.Length)
     {
         this.Encode = (int)((datasize.Language == 0) ? "gb2312".GetencodeId() : "iso-8859-1".GetencodeId());
     }
     if (this.fc.str[0] != "")
     {
         this.auto = true;
     }
     this.InitializeComponent();
     this.Language();
     base.Icon = datasize.Myico;
 }
Beispiel #4
0
        private void buttonItem5_Click(object sender, EventArgs e)
        {
            Formchuantiinf f = default(Formchuantiinf);

            f.str    = new string[3];
            f.str[1] = "";
            if (this.listBox1.Items.Count > 0)
            {
                if (this.listBox1.SelectedIndex > -1)
                {
                    new zikuview(this.Myapp, this.listBox1.SelectedIndex, f).ShowDialog();
                    if (f.str[1] != "")
                    {
                        this.Ref();
                        this.zikuupdate(null, null);
                    }
                }
            }
        }