我在类“APP.XAML.cs”中的同一个项目中有类“APP.XAML.cs”和其他类“list.xaml.cs”我有属性public static string ClientID {get; set“}在”list.xaml.cs“中我有方法clientInformation public void clientInformation(){IDClient = App。 ClientID;}在此ligne IDClient = App.ClientID;我有这个错误App“错误CS0119:'App'est un type,qui n'est pas valide dans lecontextedonné”
namespace Panels
{//class App
public partial class App : Application
{
public static string ClientID {get; set;}
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException +=
this.Application_UnhandledException;
InitializeComponent();
}
}
namespace Panels
{//class list
public partial class list : UserControl
{
public void clientInformation () { IDClient=App.ClientID; }
}
}
答案 0 :(得分:1)
您可以使用此样本:
((App)Application.Current).ClientID =1