mirror of
https://github.com/tsxc-github/mzmcos--.git
synced 2026-02-04 10:31:31 +08:00
Deploying to cf-pages from @ tsxc-github/mzmcos--@d7d7d48306 🚀
This commit is contained in:
parent
c25990c29b
commit
6ce1ed162e
52
output.xaml
52
output.xaml
@ -6,13 +6,26 @@ xmlns:local="clr-namespace:PCL;assembly=Plain Craft Launcher 2">
|
|||||||
</StackPanel.Triggers>
|
</StackPanel.Triggers>
|
||||||
<StackPanel.Resources>
|
<StackPanel.Resources>
|
||||||
<Style x:Key="BlockCodeBorder" TargetType="Border"><Setter Property="Background" Value="{DynamicResource ColorBrush4}"/><Setter Property="Opacity" Value="0.8"/><Setter Property="CornerRadius" Value="5"/><Setter Property="Margin" Value="2"/></Style>
|
<Style x:Key="BlockCodeBorder" TargetType="Border"><Setter Property="Background" Value="{DynamicResource ColorBrush4}"/><Setter Property="Opacity" Value="0.8"/><Setter Property="CornerRadius" Value="5"/><Setter Property="Margin" Value="2"/></Style>
|
||||||
<Style TargetType="TextBlock"><Setter Property="TextWrapping" Value="Wrap"/><Setter Property="HorizontalAlignment" Value="Left"/><Setter Property="FontSize" Value="14"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush1}"/></Style>
|
|
||||||
<Style TargetType="Paragraph"><Setter Property="LineHeight" Value="12"/><Setter Property="TextIndent" Value="0"/><Setter Property="Margin" Value="0,8"/></Style>
|
|
||||||
<Style x:Key="ContentStack" TargetType="StackPanel"><Setter Property="Margin" Value="20,40,20,20"/></Style>
|
<Style x:Key="ContentStack" TargetType="StackPanel"><Setter Property="Margin" Value="20,40,20,20"/></Style>
|
||||||
<Style TargetType="ListItem"><Setter Property="Foreground" Value="{DynamicResource ColorBrush1}"/><Setter Property="Margin" Value="0,4"/></Style>
|
<Style x:Key="InnerImage" TargetType="Image"><Setter Property="MaxHeight" Value="500"/><Setter Property="HorizontalAlignment" Value="Center"/></Style>
|
||||||
<Style x:Key="H3" TargetType="Paragraph"><Setter Property="FontSize" Value="18"/><Setter Property="Margin" Value="0,10,0,3"/><Setter Property="FontWeight" Value="Bold"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush4}"/></Style>
|
<Style TargetType="Paragraph"><Setter Property="LineHeight" Value="12"/><Setter Property="TextIndent" Value="0"/><Setter Property="Margin" Value="0,8"/></Style>
|
||||||
<Style TargetType="FlowDocumentScrollViewer"><Setter Property="IsSelectionEnabled" Value="False"/><Setter Property="VerticalScrollBarVisibility" Value="Hidden"/><Setter Property="Margin" Value="0"/></Style>
|
<Style TargetType="FlowDocumentScrollViewer"><Setter Property="IsSelectionEnabled" Value="False"/><Setter Property="VerticalScrollBarVisibility" Value="Hidden"/><Setter Property="Margin" Value="0"/></Style>
|
||||||
<Style TargetType="FlowDocument"><Setter Property="FontFamily" Value="Microsoft YaHei UI"/><Setter Property="FontSize" Value="14"/><Setter Property="TextAlignment" Value="Left"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush1}"/></Style>
|
<Style TargetType="TextBox" x:Key="BlockCode">
|
||||||
|
<Setter Property="FontSize" Value="14" />
|
||||||
|
<Setter Property="IsReadOnly" Value="True" />
|
||||||
|
<Setter Property="FontFamily" Value="Consolas" />
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="TextBox">
|
||||||
|
<Border Background="{DynamicResource ColorBrush7}" Opacity="0.8" BorderBrush="{DynamicResource ColorBrush4}" BorderThickness="0" CornerRadius="0,0,5,5" Padding="16,8,16,12">
|
||||||
|
<ScrollViewer x:Name="PART_ContentHost" Focusable="false" HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden" />
|
||||||
|
</Border>
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
|
</Style>
|
||||||
|
<Style x:Key="H3" TargetType="Paragraph"><Setter Property="FontSize" Value="18"/><Setter Property="Margin" Value="0,10,0,3"/><Setter Property="FontWeight" Value="Bold"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush4}"/></Style>
|
||||||
|
<Style x:Key="Card" TargetType="local:MyCard"><Setter Property="Margin" Value="0,5"/></Style>
|
||||||
<Style TargetType="TextBox" x:Key="InlineCode">
|
<Style TargetType="TextBox" x:Key="InlineCode">
|
||||||
<Setter Property="FontSize" Value="14" />
|
<Setter Property="FontSize" Value="14" />
|
||||||
<Setter Property="IsReadOnly" Value="True" />
|
<Setter Property="IsReadOnly" Value="True" />
|
||||||
@ -32,30 +45,17 @@ xmlns:local="clr-namespace:PCL;assembly=Plain Craft Launcher 2">
|
|||||||
</Setter.Value>
|
</Setter.Value>
|
||||||
</Setter>
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
<Style x:Key="H2" TargetType="Paragraph"><Setter Property="FontSize" Value="22"/><Setter Property="Margin" Value="0,10,0,5"/><Setter Property="FontWeight" Value="Bold"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush3}"/></Style>
|
<Style TargetType="FlowDocument"><Setter Property="FontFamily" Value="Microsoft YaHei UI"/><Setter Property="FontSize" Value="14"/><Setter Property="TextAlignment" Value="Left"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush1}"/></Style>
|
||||||
<Style x:Key="Card" TargetType="local:MyCard"><Setter Property="Margin" Value="0,5"/></Style>
|
|
||||||
<Style TargetType="TextBox" x:Key="BlockCode">
|
|
||||||
<Setter Property="FontSize" Value="14" />
|
|
||||||
<Setter Property="IsReadOnly" Value="True" />
|
|
||||||
<Setter Property="FontFamily" Value="Consolas" />
|
|
||||||
<Setter Property="Template">
|
|
||||||
<Setter.Value>
|
|
||||||
<ControlTemplate TargetType="TextBox">
|
|
||||||
<Border Background="{DynamicResource ColorBrush7}" Opacity="0.8" BorderBrush="{DynamicResource ColorBrush4}" BorderThickness="0" CornerRadius="0,0,5,5" Padding="16,8,16,12">
|
|
||||||
<ScrollViewer x:Name="PART_ContentHost" Focusable="false" HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden" />
|
|
||||||
</Border>
|
|
||||||
</ControlTemplate>
|
|
||||||
</Setter.Value>
|
|
||||||
</Setter>
|
|
||||||
</Style>
|
|
||||||
<Style x:Key="Lp" TargetType="Paragraph"><Setter Property="LineHeight" Value="16"/><Setter Property="TextIndent" Value="0"/></Style>
|
|
||||||
<Style TargetType="List"><Setter Property="Foreground" Value="{DynamicResource ColorBrush3}"/><Setter Property="Margin" Value="20,6,0,6"/><Setter Property="MarkerStyle" Value="1"/><Setter Property="Padding" Value="0"/></Style>
|
<Style TargetType="List"><Setter Property="Foreground" Value="{DynamicResource ColorBrush3}"/><Setter Property="Margin" Value="20,6,0,6"/><Setter Property="MarkerStyle" Value="1"/><Setter Property="Padding" Value="0"/></Style>
|
||||||
|
<Style x:Key="H2" TargetType="Paragraph"><Setter Property="FontSize" Value="22"/><Setter Property="Margin" Value="0,10,0,5"/><Setter Property="FontWeight" Value="Bold"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush3}"/></Style>
|
||||||
|
<Style TargetType="TextBlock"><Setter Property="TextWrapping" Value="Wrap"/><Setter Property="HorizontalAlignment" Value="Left"/><Setter Property="FontSize" Value="14"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush1}"/></Style>
|
||||||
|
<Style TargetType="ListItem"><Setter Property="Foreground" Value="{DynamicResource ColorBrush1}"/><Setter Property="Margin" Value="0,4"/></Style>
|
||||||
|
<Style x:Key="Lp" TargetType="Paragraph"><Setter Property="LineHeight" Value="16"/><Setter Property="TextIndent" Value="0"/></Style>
|
||||||
<Style x:Key="H1" TargetType="Paragraph"><Setter Property="FontSize" Value="24"/><Setter Property="Margin" Value="0,10,0,10"/><Setter Property="FontWeight" Value="Bold"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush3}"/></Style>
|
<Style x:Key="H1" TargetType="Paragraph"><Setter Property="FontSize" Value="24"/><Setter Property="Margin" Value="0,10,0,10"/><Setter Property="FontWeight" Value="Bold"/><Setter Property="Foreground" Value="{DynamicResource ColorBrush3}"/></Style>
|
||||||
<Style x:Key="Hr" TargetType="Section"><Setter Property="Margin" Value="0,4,0,0"/><Setter Property="BorderThickness" Value="0,1.5,0,0"/><Setter Property="BorderBrush" Value="{StaticResource ColorBrush4}"/><Setter Property="FontSize" Value="4"/></Style>
|
<Style x:Key="Hr" TargetType="Section"><Setter Property="Margin" Value="0,4,0,0"/><Setter Property="BorderThickness" Value="0,1.5,0,0"/><Setter Property="BorderBrush" Value="{StaticResource ColorBrush4}"/><Setter Property="FontSize" Value="4"/></Style>
|
||||||
<Style x:Key="InnerImage" TargetType="Image"><Setter Property="MaxHeight" Value="500"/><Setter Property="HorizontalAlignment" Value="Center"/></Style>
|
|
||||||
|
|
||||||
</StackPanel.Resources>
|
</StackPanel.Resources>
|
||||||
<local:MyHint Margin="0,8,0,2" IsWarn="False" Text="热知识:boen的饼一般会在三年内完成" />
|
<local:MyHint Margin="0,8,0,2" IsWarn="False" Text="😨知识:官网现在的主题是腐竹从我这里薅的" />
|
||||||
<local:MyCard Margin="0,10,0,14">
|
<local:MyCard Margin="0,10,0,14">
|
||||||
<Border BorderBrush="{DynamicResource ColorBrush2}" Margin="-0.6" CornerRadius="5" BorderThickness="0,0,0,10">
|
<Border BorderBrush="{DynamicResource ColorBrush2}" Margin="-0.6" CornerRadius="5" BorderThickness="0,0,0,10">
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
@ -92,8 +92,8 @@ xmlns:local="clr-namespace:PCL;assembly=Plain Craft Launcher 2">
|
|||||||
<FlowDocumentScrollViewer >
|
<FlowDocumentScrollViewer >
|
||||||
<FlowDocument>
|
<FlowDocument>
|
||||||
<Paragraph Style="{StaticResource H1}">OMG!!!!新新新新的工单系统今天震撼首发!!!>o<</Paragraph><Paragraph><Underline><local:MyTextButton Margin="0,0,0,-2" EventType="打开网页" EventData="https://mzmc.top/2025/12/356/">文章链接</local:MyTextButton></Underline> 发布时间: 2025年12月21日 23:25:10
|
<Paragraph Style="{StaticResource H1}">OMG!!!!新新新新的工单系统今天震撼首发!!!>o<</Paragraph><Paragraph><Underline><local:MyTextButton Margin="0,0,0,-2" EventType="打开网页" EventData="https://mzmc.top/2025/12/356/">文章链接</local:MyTextButton></Underline> 发布时间: 2025年12月21日 23:25:10
|
||||||
由我们亲爱的副腐竹,<Bold>Akir_</Bold> 编写的新版本<Bold>工单系统 2.0</Bold> 今天上线!<LineBreak/>
|
<InlineUIContainer><local:MyImage Style="{StaticResource InnerImage}" Source="http://mzmc.top/wp-content/uploads/2025/12/20251221153912575901.webp"/></InlineUIContainer></Paragraph><Paragraph>由我们亲爱的副腐竹,<Bold>Akir_</Bold> 编写的新版本<Bold>工单系统 2.0</Bold> 今天上线!</Paragraph><Paragraph>简单大气的界面,整齐的输入框,还有人性化的紧急程度选择栏,处处透露着腐竹们对于广大玩家的爱护,让人恨不得立马提交工单上号建一万遍绵中 WWWW!各位方块人们,还在等什么,赶紧登录官网,提交工单,进服肝肝肝 o/o/o/!!!</Paragraph><Paragraph><InlineUIContainer><local:MyImage Style="{StaticResource InnerImage}" Source="http://mzmc.top/wp-content/uploads/2025/12/20251221154250518691.webp"/></InlineUIContainer><LineBreak/>
|
||||||
<InlineUIContainer><local:MyImage Style="{StaticResource InnerImage}" Source="http://mzmc.top/wp-content/uploads/2025/12/1766359261_8183_20251221152101699559.png"/></InlineUIContainer></Paragraph><Paragraph>简单大气的界面,整齐的输入框,还有人性化的紧急程度选择栏,处处透露着腐竹们对于广大玩家的爱护,让人恨不得立马提交工单上号建一万遍绵中 WWWW!各位方块人们,还在等什么,赶紧登录官网,提交工单,进服肝肝肝 o/o/o/!!!</Paragraph><BlockUIContainer><local:MyImage Style="{StaticResource InnerImage}" Source="http://mzmc.top/wp-content/uploads/2025/12/1766359060_7309_20251221151740612409.png"/></BlockUIContainer><Paragraph>以下是更新内容原文:</Paragraph><Paragraph>🔈🔈🔈全新的绵中方块人服务器-工单系统 2.0 已上线!<LineBreak/>
|
以下是更新内容原文:</Paragraph><Paragraph>🔈🔈🔈全新的绵中方块人服务器-工单系统 2.0 已上线!<LineBreak/>
|
||||||
【更新内容】 <LineBreak/>
|
【更新内容】 <LineBreak/>
|
||||||
使用 MzmcOS 问卷系统,带来更优质的体验!<LineBreak/>
|
使用 MzmcOS 问卷系统,带来更优质的体验!<LineBreak/>
|
||||||
优化了问题分类的设置,让分类选择不再冗杂~<LineBreak/>
|
优化了问题分类的设置,让分类选择不再冗杂~<LineBreak/>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user