本文整理汇总了C#中Stock.restock方法的典型用法代码示例。如果您正苦于以下问题:C# Stock.restock方法的具体用法?C# Stock.restock怎么用?C# Stock.restock使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stock
的用法示例。
在下文中一共展示了Stock.restock方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Beginscherm_Load
private void Beginscherm_Load(object sender, EventArgs e)
{
PinInvoer pinInvoer = new PinInvoer();
Hoofdmenu hoofdmenu = new Hoofdmenu();
ArduinoData arduino = new ArduinoData();
Stock stock = new Stock(arduino);
Hash security = new Hash();
TransactionManager transactionManager;
Boolean reset = false;
Boolean pinCorrect;
String[] pasInformation;
bool EE = true;
//User user;
try
{
while (true) ///Infinite loop so that the program returns here after every cancelation.
{
while (true)
{
pinCorrect = false;
pasInformation = new String[4];
reset = false;
transactionManager = null;
int KlantID;
String rekeningID;
String pasID;
HTTPget httpget = new HTTPget();
HTTPpost httppost = new HTTPpost();
while (true)
{
String s = arduino.getFirstString();
if (s.Contains(",NEWUID"))
{
pasInformation = s.Split('\n', '\n', '\n');
Int32.TryParse(pasInformation[2],out KlantID);
rekeningID = pasInformation[1];
pasID = pasInformation[0];
break;
}
else if (s.Contains("open"))
{
Cursor.Show();
stock.restock();
}
}
if (httpget.getActiefStand(pasID) == false)
{
BlockScreen tmp = new BlockScreen();
break;
}
pinInvoer.Show();
while (pinCorrect == false)
{
int insertedDigits = 0;
String pincode = "";
Boolean confirmed = false;
while (confirmed == false) ///Waits for user input until 4 digits have been submitted.
{
String input = arduino.getString();
if (checkInput(input) == true && insertedDigits < 4)
{
pinInvoer.printStar();
pinInvoer.falsepininfo.Visible = false;
insertedDigits++;
pincode += input.ElementAt(0);
}
else if (input.Contains("#KEY"))
{
reset = true;
break;
}
else if (input.Contains("CKEY"))
{
pinInvoer.clear();
insertedDigits = 0;
pincode = "";
}
if (insertedDigits == 4)
{
if (input.Contains("*")) { confirmed = true; }
}
}
pinInvoer.clear();
if (reset == true) { break; }
if (pincode == "1337" && EE) //Added easter egg
{
pinInvoer.pictureBox2.Visible = true;
pinInvoer.Refresh();
System.Threading.Thread.Sleep(8000);
reset = true;
pinInvoer.pictureBox2.Visible = false;
break;
}
if (security.checkHash(rekeningID, pincode) == false)
{
pinInvoer.falsepininfo.Visible = true;
HTTPpost tmp = new HTTPpost();
tmp.Incrementfalsepin(pasID);
HTTPget tmp2 = new HTTPget();
if(tmp2.getPinclass(pasID).poging >=2)
//.........这里部分代码省略.........