摘要:
MainWindow.xaml <!-- 1. 使用一个 `Border` 控件作为最外层容器,设置了紫色背景(#7160E8)和圆角(10)。 --> <Border Background="#7160E8" CornerRadius="10"> <Grid> <!-- 2. 主要布局: - 在 阅读全文
2024年8月11日 #
摘要:
依然使用上面的工程,添加Blazor支持,此部分参考微软文档生成 Windows Presentation Foundation (WPF) Blazor 应用,本小节快速略过。 2.1 编辑工程文件WPFBlazorChat.csproj 在项目文件的顶部,将 SDK 更改为 Microsoft. 阅读全文
摘要:
WPFBlazorChat\RazorViews\Counter.razor <h1>Counter</h1> <p>好开心,你点我了,现在是:<span style="color: red;">@currentCount</span></p> <button class="btn btn-prim 阅读全文