zoukankan      html  css  js  c++  java
  • WPF中model属性即时改变

      新建一个model作为说明即可,以便查阅。

      添加引用:using System.ComponentModel ;  

    public class Test:INotifyPropertyChanged 
        {
            private string name;
    
            public string Name
            {
                get { return this.name; }
                set 
                {
                    this.name = value;
                    NotifyPropertyChanged("Name");
                }
            }
    
            public event PropertyChangedEventHandler PropertyChanged;
            private void NotifyPropertyChanged(string propertyName)
            {
                if (PropertyChanged != null)
                {
                    PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
                }
            }
        }

    WPF中添加winform控件:

    添加引用:System.Windows.Forms和WindowsForsIntegration.

    xmlns:WinFormHost="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
    xmlns:WinForm="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"

    <WindowsFormsHost Name="wfAll" Height="1002" Width="1652" Background="Black" Canvas.Left="1" >
                                <WinForm:Panel x:Name="panelShowScreen" Dock="Fill" BackColor="Black" >
                                </WinForm:Panel>
                            </WindowsFormsHost>
  • 相关阅读:
    awk使用
    SQL VIEW(视图)
    crontab使用
    SecureCRT
    Python异常
    Python字符串
    Python字典,列表,元组
    Python路径
    vim插件
    Python类
  • 原文地址:https://www.cnblogs.com/ysyn/p/3822392.html
Copyright © 2011-2022 走看看