[feat:] frontend for running sheet details (ZKZ, KNr, AMANr, ...)
This commit is contained in:
+23
-1
@@ -936,6 +936,17 @@ public partial class MainWindow : Window
|
||||
NudExpMargColumnsPerPage.Value = options.columnsPerPage;
|
||||
NudExpMargFontSize.Value = (decimal)options.fontSize;
|
||||
NudExpMargSmallFontSize.Value = (decimal)options.smallFontSize;
|
||||
|
||||
TbExpRnsKNrAbs.Text = options.rsKNrAbs;
|
||||
TbExpRnsKNrEmp.Text = options.rsKNrEmp;
|
||||
TbExpRnsZKZ.Text = options.rsZKZ;
|
||||
TbExpRnsIntVer.Text = options.rsIntVer;
|
||||
TbExpRnsLaufz.Text = options.rsLaufz;
|
||||
TbExpRnsEinldat.Text = options.rsEinldat;
|
||||
TbExpRnsAMANr.Text = options.rsAMANr;
|
||||
TbExpRnsBundGew.Text = options.rsBundGew;
|
||||
NudExpRnsPalNr.Value = options.rsPalNr;
|
||||
NudExpRnsBundNrPal.Value = options.rsBundNrPal;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
@@ -959,7 +970,18 @@ public partial class MainWindow : Window
|
||||
rowsPerPage = ReadInt(TbExpMargRowsPerPage, 7),
|
||||
columnsPerPage = ReadInt(NudExpMargColumnsPerPage, 3),
|
||||
fontSize = ReadDouble(NudExpMargFontSize),
|
||||
smallFontSize = ReadDouble(NudExpMargSmallFontSize)
|
||||
smallFontSize = ReadDouble(NudExpMargSmallFontSize),
|
||||
|
||||
rsKNrAbs = TbExpRnsKNrAbs.Text,
|
||||
rsKNrEmp = TbExpRnsKNrEmp.Text,
|
||||
rsZKZ = TbExpRnsZKZ.Text,
|
||||
rsIntVer = TbExpRnsIntVer.Text,
|
||||
rsLaufz = TbExpRnsLaufz.Text,
|
||||
rsEinldat = TbExpRnsEinldat.Text,
|
||||
rsAMANr = TbExpRnsAMANr.Text,
|
||||
rsBundGew = TbExpRnsBundGew.Text,
|
||||
rsPalNr = ReadInt(NudExpRnsPalNr, 1),
|
||||
rsBundNrPal = ReadInt(NudExpRnsBundNrPal, 20)
|
||||
};
|
||||
|
||||
Settings.Save();
|
||||
|
||||
Reference in New Issue
Block a user