Esempio n. 1
0
 private void ProfitValueLabelDrow()
 {
     ProfitValueLabel           = new Label();
     ProfitValueLabel.Parent    = SelectedTab;
     ProfitValueLabel.Font      = new Font("Microsoft Sans Serif", 12.00f, FontStyle.Regular);
     ProfitValueLabel.BackColor = Color.Transparent;
     ProfitValueLabel.AutoSize  = false;
     ProfitValueLabel.Size      = new Size(58, 20);
     ProfitValueLabel.TextAlign = ContentAlignment.MiddleLeft;
     ProfitValueLabel.Text      = $"{Zoo.ConvertMoney(ProfitCalc())}";
     ProfitValueLabel.Location  = new Point(580, 60);
 }
Esempio n. 2
0
 private void ProfitValueLabelDrow()
 {
     ProfitValueLabel        = new Label();
     ProfitValueLabel.Parent = SelectedTab;
     #region CustomFontStyle
     FontStyle CustomFontStyle = FontStyle.Regular;
     CustomFontStyle |= FontStyle.Bold;
     CustomFontStyle |= FontStyle.Italic;
     #endregion
     ProfitValueLabel.Font      = new Font("MV Boli", 18f, CustomFontStyle);
     ProfitValueLabel.BackColor = Color.Transparent;
     ProfitValueLabel.AutoSize  = false;
     ProfitValueLabel.Size      = new Size(82, 31);
     ProfitValueLabel.TextAlign = ContentAlignment.MiddleLeft;
     ProfitValueLabel.Text      = $"{Zoo.ConvertMoney(1234)}";
     ProfitValueLabel.Location  = new Point(580, 60);
 }
Esempio n. 3
0
 private void CostFeedingLabelUpdate()
 {
     CostLvlupLabel.Text = Zoo.ConvertMoney(LvlupPrice);
 }
Esempio n. 4
0
 void RefreshLabelsInForm()
 {
     MainFormRef.RefreshMoneyLabel(Zoo.ConvertMoney(Zoo.Money));
     MainFormRef.RefreshNewCagePriceLabel(Zoo.ConvertMoney(Cages.NextCagePrice));
 }
Esempio n. 5
0
 private void CostCuringLabelUpdate()
 {
     CostCuringLabel.Text = Zoo.ConvertMoney(CuringPrice);
 }
Esempio n. 6
0
 private void TigerPriceLabelUpdate()
 {
     TigerPriceLabel.Text = Zoo.ConvertMoney(Tiger.BuyingPriceStatic);
 }
Esempio n. 7
0
 private void WildcatPriceLabelUpdate()
 {
     WildcatPriceLabel.Text = Zoo.ConvertMoney(Wildcat.BuyingPriceStatic);
 }
Esempio n. 8
0
 private void WolfPriceLabelUpdate()
 {
     WolfPriceLabel.Text = Zoo.ConvertMoney(Wolf.BuyingPriceStatic);
 }
Esempio n. 9
0
 private void RaccoonPriceLabelUpdate()
 {
     RaccoonPriceLabel.Text = Zoo.ConvertMoney(Raccoon.BuyingPriceStatic);
 }