为文本块创建实心画笔(cppwinrt)时,我在构建时遇到错误,使用:
void MainPage::myStyle(Controls::TextBlock & block)
{
block.FontSize(72.0);
block.Foreground(Media::SolidColorBrush(Windows::UI::Colors::Orange()));
block.VerticalAlignment(VerticalAlignment::Center);
}
错误:LNK2019 未解析的外部符号“公共:__thiscall winrt::Windows::UI::Xaml::Media::SolidColorBrush::SolidColorBrush(struct winrt::Windows::UI::Color const &)”
当我取出solidbrush 时出现错误,并且我还尝试了其他版本的solidbrush 时出现相同的错误。