mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
39 lines
783 B
C++
39 lines
783 B
C++
#ifndef _SYSTEM_WINDOWS_CONTROLS_TEXTBOX_
|
|
#define _SYSTEM_WINDOWS_CONTROLS_TEXTBOX_
|
|
|
|
#include <System/Windows/Controls/Control.h>
|
|
#include <System/String.h>
|
|
|
|
namespace System
|
|
{
|
|
namespace Windows
|
|
{
|
|
namespace Controls
|
|
{
|
|
class TextBox : public Control
|
|
{
|
|
private:
|
|
int selectionLength;
|
|
int selectionStart;
|
|
String _text;
|
|
|
|
public:
|
|
// Gets or sets a value that determines if the user can change the text in the text box.
|
|
bool IsReadOnly;
|
|
String getSelectedText() const;
|
|
String getText() const;
|
|
void setText(const String& value);
|
|
|
|
TextBox();
|
|
|
|
static int GetType();
|
|
void Select(const int start, const int length);
|
|
void SelectAll();
|
|
const String& ToString() const;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif //_SYSTEM_WINDOWS_CONTROLS_TEXTBOX_
|