1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include "text_block.h" #include "ui/window.h" namespace cru { namespace ui { namespace controls { TextBlock::TextBlock(const Microsoft::WRL::ComPtr<IDWriteTextFormat>& init_text_format, const Microsoft::WRL::ComPtr<ID2D1Brush>& init_brush) : TextControl(init_text_format, init_brush) { } } } }