随笔分类 - WPF样式
摘要:需求:实现全局消息提示框 一:创建全局Message public class Message { private static readonly Style infoStyle = (Style)Application.Current.Resources["InfoMessage"]; priva
阅读全文
摘要:效果:实现加载UserControl动画效果 cs代码如下 public class BaseModuleView : UserControl { private TranslateTransform CurTranslate; private DoubleAnimation XAnim; priv
阅读全文
摘要:实现效果 带定时器的轮播图 using引用 using System.Windows; using System.Windows.Controls; using System.Windows.Markup; using System.Windows.Media; using System.Windo
阅读全文
摘要:目的:绘制简单轻量级的曲线视图 二、实现效果: 1,绘制标准基准线 2,可拖动 三、用到控件 1,Canvas 2,Ellipse XAML代码: <Canvas Background="#232323" Grid.Row="1" x:Name="MainCanvas" SizeChanged="L
阅读全文
摘要:xaml代码如下 <Button x:Class="UI.btn.ZButton" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winf
阅读全文
摘要:<Style x:Key="Radbtn" TargetType="{x:Type RadioButton}"> <Setter Property="Foreground" Value="White"></Setter> <Setter Property="FontSize" Value="18">
阅读全文