2013-06-12 19:21:00 +02:00
|
|
|
#ifndef _SYSTEM_WINDOWS_CONTROLS_BORDER_
|
|
|
|
#define _SYSTEM_WINDOWS_CONTROLS_BORDER_
|
2013-05-05 18:18:41 +02:00
|
|
|
|
|
|
|
#include <System/Windows/CornerRadius.h>
|
|
|
|
#include <System/Windows/FrameworkElement.h>
|
|
|
|
#include <System/Windows/Media/Brush.h>
|
|
|
|
|
|
|
|
using namespace System::Windows::Media;
|
|
|
|
|
|
|
|
namespace System
|
|
|
|
{
|
|
|
|
namespace Windows
|
|
|
|
{
|
|
|
|
namespace Controls
|
|
|
|
{
|
2013-06-12 19:21:00 +02:00
|
|
|
/**
|
|
|
|
* Draws a border, background, or both around another object.
|
|
|
|
*/
|
2013-05-05 18:18:41 +02:00
|
|
|
class Border : public FrameworkElement
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Border();
|
|
|
|
~Border();
|
|
|
|
|
|
|
|
Brush* Background;
|
|
|
|
Brush* BorderBrush;
|
|
|
|
Thickness BorderThickness;
|
|
|
|
UIElement* Child;
|
|
|
|
System::Windows::CornerRadius CornerRadius;
|
|
|
|
Thickness Padding;
|
|
|
|
|
2013-07-11 17:25:49 +02:00
|
|
|
static int GetType();
|
2013-05-05 18:18:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-12 19:21:00 +02:00
|
|
|
|
|
|
|
#endif _SYSTEM_WINDOWS_CONTROLS_BORDER_
|