Skip to content

Commit

Permalink
Merge pull request #1519 from vchelaru/vicdotexe/1518-ReplaceTextInpu…
Browse files Browse the repository at this point in the history
…tWindow

chore: #1518 - Replace Usages of TextInputWindow
  • Loading branch information
vchelaru authored Sep 29, 2024
2 parents aff5940 + c01d058 commit 3185f77
Show file tree
Hide file tree
Showing 11 changed files with 64 additions and 443 deletions.
8 changes: 7 additions & 1 deletion FRBDK/Glue/Glue/Controls/CustomizableTextInputWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

namespace FlatRedBall.Glue.Controls
{
public enum AboveOrBelow
{
Above,
Below
}

/// <summary>
/// Interaction logic for CustomizableTextInputWindow.xaml
/// </summary>
Expand Down Expand Up @@ -50,7 +56,7 @@ public void HighlightText()
TextBox.SelectAll();
}

public void AddControl(UserControl control, AboveOrBelow aboveOrBelow = AboveOrBelow.Below)
public void AddControl(Control control, AboveOrBelow aboveOrBelow = AboveOrBelow.Below)
{
if(aboveOrBelow == AboveOrBelow.Above)
{
Expand Down
157 changes: 0 additions & 157 deletions FRBDK/Glue/Glue/Controls/TextInputWindow.Designer.cs

This file was deleted.

107 changes: 0 additions & 107 deletions FRBDK/Glue/Glue/Controls/TextInputWindow.cs

This file was deleted.

Loading

0 comments on commit 3185f77

Please sign in to comment.