如何将commandparameter中的值声明为全局值

时间:2014-11-12 12:30:43

标签: c# wpf

我们如何将CommandParameter值设置为全局。

这是我的代码

public partial class uctrlClientDetailPage : UserControl
{
    public uctrlClientDetailPage(int ClientId)
    {
        //
    }
} 

//传递值

private void Button_Click(object sender, RoutedEventArgs e)
{    
    Button btn = (Button)e.OriginalSource;                
    uctrlClientDetailPage objuctrlProxyDetails = new uctrlClientDetailPage(int.Parse(btn.CommandParameter.ToString()));
}

我从另一个页面传递ClientId作为CommandParameter。我想将此clientId声明为全局 我该怎么设置呢。

事先感谢你的帮助......

0 个答案:

没有答案