摘要:
一、简单工厂模式 实现效果 static void Main(string[] args) { //非工厂模式 //OperationAdd add = new OperationAdd(); //add.NumberA = 2; //add.NumberB = 3; //Console.Write 阅读全文
摘要:
设计模式总体分为三大类 一、创建型模式 (1)工厂方法模式 (2)抽象工厂模式 (3)单例模式 (4)建造者模式 (5)原型模式 二、结构型模式 (1)适配器模式 (2)装饰器模式 (3)代理模式 (4)外观模式 (5)桥接模式 (6)组合模式 (7)享元模式 三、行为型模式 (1)策略模式 (2) 阅读全文
摘要:
一、依赖倒置原则 依赖于抽象类,依赖于接口,而非依赖于具体类的实现,这样方便子类的切换 Mytest mytest=new Mytest(); //依赖于具体类,硬编码 ITest mytest=new Mytest(); //依赖于接口 二、单一职责 在类中只做一件事,不会做其他不相关的事,或者跨 阅读全文
摘要:
模板能够更加灵活的控制控件的外观 1. 示例:通过模板更改控件Button的外观 效果: <Window x:Class="模板.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x 阅读全文
摘要:
样式是改变控件的基础方法 举例:改变三个Button的外观属性 XAML代码: <Window x:Class="样式.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="htt 阅读全文