Change of button-places etc.
This commit is contained in:
@ -55,32 +55,38 @@ namespace CobXmlSupport
|
||||
}
|
||||
if (!upd) S.ettingList.Add(f);
|
||||
}
|
||||
}
|
||||
|
||||
public class savedFile : ICloneable
|
||||
{
|
||||
public savedFile()
|
||||
|
||||
public static string strX(char chs, int length)
|
||||
{
|
||||
idConnect="";
|
||||
usageName="";
|
||||
directorySaved="";
|
||||
fNameSaved="";
|
||||
saveDate = DateTime.MinValue;
|
||||
return new String(chs, length);
|
||||
}
|
||||
|
||||
public string idConnect;
|
||||
public string usageName;
|
||||
public string directorySaved;
|
||||
public string fNameSaved;
|
||||
public DateTime saveDate;
|
||||
|
||||
|
||||
public object Clone()
|
||||
{
|
||||
savedFile tmpSF = new savedFile();
|
||||
tmpSF = (savedFile)this.MemberwiseClone();
|
||||
return tmpSF;
|
||||
}
|
||||
}
|
||||
|
||||
//public class savedFile : ICloneable
|
||||
//{
|
||||
// public savedFile()
|
||||
// {
|
||||
// idConnect="";
|
||||
// usageName="";
|
||||
// directorySaved="";
|
||||
// fNameSaved="";
|
||||
// saveDate = DateTime.MinValue;
|
||||
// }
|
||||
|
||||
// public string idConnect;
|
||||
// public string usageName;
|
||||
// public string directorySaved;
|
||||
// public string fNameSaved;
|
||||
// public DateTime saveDate;
|
||||
|
||||
|
||||
// public object Clone()
|
||||
// {
|
||||
// savedFile tmpSF = new savedFile();
|
||||
// tmpSF = (savedFile)this.MemberwiseClone();
|
||||
// return tmpSF;
|
||||
// }
|
||||
//}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user