2013-05-05 18:18:41 +02:00
|
|
|
#include <System/Windows/Controls/TextBox.h>
|
|
|
|
#include <System/Windows/Media/SolidColorBrush.h>
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
|
|
|
namespace Windows
|
|
|
|
{
|
|
|
|
namespace Controls
|
|
|
|
{
|
|
|
|
TextBox::TextBox()
|
|
|
|
: _text(String::Empty)
|
|
|
|
{
|
|
|
|
Background = new SolidColorBrush(Color::Gray);
|
|
|
|
Foreground = new SolidColorBrush(Color::Black);
|
|
|
|
}
|
|
|
|
|
|
|
|
String TextBox::getSelectedText() const
|
|
|
|
{
|
|
|
|
return _text.SubString(selectionStart, selectionLength);
|
|
|
|
}
|
|
|
|
|
|
|
|
String TextBox::getText() const
|
|
|
|
{
|
|
|
|
return _text;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextBox::setText(const String& value)
|
|
|
|
{
|
|
|
|
_text = value;
|
|
|
|
}
|
|
|
|
|
2013-07-11 17:25:49 +02:00
|
|
|
int TextBox::GetType()
|
2013-05-05 18:18:41 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextBox::Select(const int start, const int length)
|
|
|
|
{
|
|
|
|
selectionStart = start;
|
|
|
|
selectionLength = length;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TextBox::SelectAll()
|
|
|
|
{
|
|
|
|
Select(0, _text.Length);
|
|
|
|
}
|
|
|
|
|
2013-07-11 20:00:07 +02:00
|
|
|
const String TextBox::ToString() const
|
2013-05-05 18:18:41 +02:00
|
|
|
{
|
2013-06-02 14:32:43 +02:00
|
|
|
return _text;
|
2013-05-05 18:18:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|