摘要:
# Freezable 对象(WPF) #> Freezable 继承自 DependencyObject,同时添加了 Freezable 方法,用于冻结对象。---## 冻结对象 ##以此为示例```ruby def say_hi print "hello world" end``````cs namespace ConsoleApplication2 { public class Person : Freezable { public string Name { ... 阅读全文