diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-28 16:35:16 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-08-28 16:35:16 +0300 |
| commit | f3fc87dd10b3d55591a84ecbfb0612769f0c09b9 (patch) | |
| tree | 640621ab876dd5368d91e44b07b4f2872752e5bb /Software/Visual_Studio/Tango.SharedUI | |
| parent | 37fe17f09478a486dcd51f0edd8028724dc85c16 (diff) | |
| download | Tango-f3fc87dd10b3d55591a84ecbfb0612769f0c09b9.tar.gz Tango-f3fc87dd10b3d55591a84ecbfb0612769f0c09b9.zip | |
Working on BL Builders !
Working on making PPC work with builders..
Diffstat (limited to 'Software/Visual_Studio/Tango.SharedUI')
| -rw-r--r-- | Software/Visual_Studio/Tango.SharedUI/Controls/HexagonControl.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.SharedUI/Controls/HexagonControl.cs b/Software/Visual_Studio/Tango.SharedUI/Controls/HexagonControl.cs index 75e753306..c4bebbbe7 100644 --- a/Software/Visual_Studio/Tango.SharedUI/Controls/HexagonControl.cs +++ b/Software/Visual_Studio/Tango.SharedUI/Controls/HexagonControl.cs @@ -95,10 +95,12 @@ namespace Tango.SharedUI.Controls Typeface typeface = new Typeface("Times New Roman"); double em_size = 16; +#pragma warning disable CS0618 // Type or member is obsolete FormattedText formatted_text = new FormattedText( Row + "," + Column, CultureInfo.CurrentUICulture, FlowDirection.LeftToRight, typeface, em_size, Brushes.Black); +#pragma warning restore CS0618 // Type or member is obsolete // Center the text horizontally. formatted_text.TextAlignment = TextAlignment.Center; |
