Skip to content

Commit 2d832b1

Browse files
committed
Updates
1 parent b356939 commit 2d832b1

22 files changed

Lines changed: 16 additions & 16 deletions

ConsoleDraw.dll

3.5 KB
Binary file not shown.
3.5 KB
Binary file not shown.
-5 KB
Binary file not shown.
3.5 KB
Binary file not shown.

Example Application/TEXT/Source/Text/Windows/LoadMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public LoadMenu(Dictionary<String, String> fileTypes, Window parentWindow)
2929
{
3030
FileTypes = fileTypes;
3131

32-
fileSelect = new FileSelect(PostionX + 2, PostionY + 2, FileInfo.Path, "fileSelect", this, true, "txt");
32+
fileSelect = new FileSelect(PostionX + 2, PostionY + 2, Width - 4, 13, FileInfo.Path, "fileSelect", this, true, "txt");
3333
fileSelect.ChangeItem = delegate() { UpdateCurrentlySelectedFileName(); };
3434
fileSelect.SelectFile = delegate() { LoadFile(); };
3535

Example Application/TEXT/Source/Text/Windows/Resolution.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ public class Resolution : PopupWindow
2020
public Resolution(Window parentWindow)
2121
: base("Change Resolution", 6, (Console.WindowWidth / 2) - 15, 30, 8, parentWindow)
2222
{
23-
var widthLabel = new Label("Width", PostionX + 2, PostionY + 2, "widthLabel", parentWindow);
23+
var widthLabel = new Label("Width", PostionX + 2, PostionY + 2, "widthLabel", parentWindow) { BackgroundColour = ConsoleColor.Gray };
2424
widthTxtBox = new TextBox(PostionX + 2, PostionY + 10, Console.WindowWidth.ToString(), "widthTxtBox", this, 5);
2525
var widthMaxBtn = new Button(PostionX + 2, PostionY + 17, "Max", "widthMaxBtn", this);
2626
widthMaxBtn.Action = delegate() { widthTxtBox.SetText(Console.LargestWindowWidth.ToString()); };
2727

28-
var heightLabel = new Label("Height", PostionX + 4, PostionY + 2, "widthLabel", parentWindow);
28+
var heightLabel = new Label("Height", PostionX + 4, PostionY + 2, "widthLabel", parentWindow) { BackgroundColour = ConsoleColor.Gray };
2929
heightTxtBox = new TextBox(PostionX + 4, PostionY + 10, Console.WindowHeight.ToString(), "heightTxtBox", this, 5);
3030
var heightMaxBtn = new Button(PostionX + 4, PostionY + 17, "Max", "heighthMaxBtn", this);
3131
heightMaxBtn.Action = delegate() { heightTxtBox.SetText(Console.LargestWindowHeight.ToString()); };

Example Application/TEXT/Source/Text/Windows/SaveMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public SaveMenu(String data, Window parentWindow)
2727
{
2828
Text = data;
2929

30-
fileSelect = new FileSelect(PostionX + 2, PostionY + 2, FileInfo.Path, "fileSelect", this);
30+
fileSelect = new FileSelect(PostionX + 2, PostionY + 2, Width - 4, 13, FileInfo.Path, "fileSelect", this);
3131

3232
var openLabel = new Label("Name", PostionX + 16, PostionY + 2, "openLabel", this);
3333
openTxtBox = new TextBox(PostionX + 16, PostionY + 7, FileInfo.Filename, "openTxtBox", this) { Selectable = true };
3.5 KB
Binary file not shown.

Example Application/TEXT/Source/Text/bin/Debug/Text.application

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
1515
</dsig:Transforms>
1616
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" />
17-
<dsig:DigestValue>ZnFXJFLDnY7/MUjHhOmiJf//Q/aXr/GXUobFr8Uda7A=</dsig:DigestValue>
17+
<dsig:DigestValue>Pb4OFxVsSQFpnXGbUPSJUjmfKY/wZE0+UMeKv1mh5a8=</dsig:DigestValue>
1818
</hash>
1919
</dependentAssembly>
2020
</dependency>
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)