#include #include namespace System { namespace Windows { namespace Controls { TextBlock::TextBlock() : Foreground(new SolidColorBrush(Color::White)), Padding(0), Text(String::Empty) { } TextBlock::~TextBlock() { delete Foreground; } const char* TextBlock::ToString() const { return Text.ToString(); } } } }