-
-
Notifications
You must be signed in to change notification settings - Fork 248
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated SP default stat-multipliers. fixed issue with stat-OCR when f…
…irst number had a comma instead of a dot. added stats of parents in the raising-tab. improved handling of hidden-stats (oxygen and speed for aquatics) and torpor in tester. text in note-field now gets saved when adding new creature.
- Loading branch information
cadaei
committed
Jul 20, 2017
1 parent
69bb8d5
commit e43d5e9
Showing
16 changed files
with
563 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Drawing; | ||
using System.Data; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
|
||
namespace ARKBreedingStats.raising | ||
{ | ||
public partial class ParentStatValues : UserControl | ||
{ | ||
public ParentStatValues() | ||
{ | ||
InitializeComponent(); | ||
labelM.TextAlign = ContentAlignment.MiddleRight; | ||
labelF.TextAlign = ContentAlignment.MiddleRight; | ||
} | ||
|
||
public string StatName { set { label1.Text = value; } } | ||
|
||
internal void setValues(string sMother, string sFather, int highlight) | ||
{ | ||
labelM.Text = sMother; | ||
labelF.Text = sFather; | ||
switch (highlight) | ||
{ | ||
case 1: | ||
labelM.ForeColor = Color.DarkBlue; | ||
labelF.ForeColor = Color.DarkRed; | ||
break; | ||
case 2: | ||
labelF.ForeColor = Color.DarkBlue; | ||
labelM.ForeColor = Color.DarkRed; | ||
break; | ||
default: | ||
labelM.ForeColor = Color.Black; | ||
labelF.ForeColor = Color.Black; | ||
break; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.