Exemple #1
0
 public void Request(string line, Point ciP, int parentID, EnmMmlFileFormat tp, object option)
 {
     Location = new Point(ciP.X, ciP.Y);
     //dgvItem.Rows.Clear();
     ss.Request(
         line,
         cbUpdateList,
         parentID,
         tp == EnmMmlFileFormat.GWI ? ".gwi" : (
             tp == EnmMmlFileFormat.MUC ? ".muc" : (
                 tp == EnmMmlFileFormat.MML ? ".mml" :
                 ""
                 )),
         option
         );
 }
Exemple #2
0
 internal void Request(string line, Point ciP)
 {
     Location = new Point(ciP.X, ciP.Y);
     dgvItem.Rows.Clear();
     ss.Request(line, cbUpdateList);
 }