winform、WPFの値伝達方式の詳細
2629 ワード
1.コンストラクタ
2.静的変数
3.フォームのプロパティを追加
public string name{set;get;}
例:
値:
コードクリップ1:単純プロパティ、prop
2:完全属性:propfull
その後、Tabを2回押して完了し、Tabを押してタイプを変更し、Tabを押して属性名を変更します.
4.アプリケーションを使用する.Current.Properties
2.静的変数
3.フォームのプロパティを追加
public string name{set;get;}
例:
public partial class Window1 : Window
{
public string name { get; set; }
public int age { get; set; }
public Window1()
{
InitializeComponent();
}
}
値:
private void Button_Click(object sender, RoutedEventArgs e)
{
Window1 win = new Window1();
win.name = "xiaohuang";
win.age = 18;
win.Show();
}
コードクリップ1:単純プロパティ、prop
2:完全属性:propfull
その後、Tabを2回押して完了し、Tabを押してタイプを変更し、Tabを押して属性名を変更します.
4.アプリケーションを使用する.Current.Properties
:
// :
Application.Current.Properties["bbb"] = "dsfds";
// :
string aa = Application.Current.Properties["bbb"].ToString();