【问题标题】:How to access global variable declared in xaml from code behind如何从后面的代码访问在 xaml 中声明的全局变量
【发布时间】:2013-04-01 16:41:36
【问题描述】:

我想从 wpf 中的不同导航页面访问一个对象。为此,我创建了一个类并在 app.xaml 中声明。我可以从 xaml 中的多个导航页面访问该类,但是当我想在后面的代码中创建按钮单击事件时,我无法访问该类。

这就是我所做的。

类(SerialComm.cs)。

class SerialComm : INotifyPropertyChanged
{
    private SerialPort _serialPortComm;

    public SerialComm()
    {
        _serialPortComm = new SerialPort();
    }

    public SerialPort SerialPortComm
    {
        get { return _serialPortComm; }
        set
        {
            _serialPortComm = value;
            OnPropertyChanged("SerialPortComm");
        }
    }

    #region NotifyPropertyChange handler
    public event PropertyChangedEventHandler PropertyChanged;

    [NotifyPropertyChangedInvocator]
    protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
    {
        PropertyChangedEventHandler handler = PropertyChanged;
        if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
    }
    #endregion

}

资源字典 (/Resources/DataSourceResources.xaml)

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:sys="clr-namespace:System;assembly=mscorlib" 
                xmlns:local="clr-namespace:RemoteConfigurator"
                xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
                xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
                mc:Ignorable="d" 
                >
<local:SerialComm x:Key="SerialCommDataSource" d:IsDataSource="True" />

app.xaml 中的声明

<Application x:Class="RemoteConfigurator.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:local="clr-namespace:RemoteConfigurator"
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         mc:Ignorable="d" 
         StartupUri="MainWindow.xaml">
<Application.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Resources/DataSourceResources.xaml"/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>
</Application.Resources>

我可以访问该对象的导航页面。

<UserControl x:Class="RemoteConfigurator.Content.SerialSettings"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
         xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
         xmlns:ports="clr-namespace:System.IO.Ports;assembly=System"
         xmlns:sys="clr-namespace:System;assembly=mscorlib" 
         xmlns:local="clr-namespace:RemoteConfigurator"
         mc:Ignorable="d" 
         d:DesignHeight="600" d:DesignWidth="600" Loaded="SerialSettings_Loaded">

<Grid Style="{StaticResource ContentRoot}" DataContext="{Binding Source={StaticResource SerialCommDataSource}}" >
    <ScrollViewer>
        <StackPanel >
            <StackPanel Orientation="Horizontal" Margin="4">
                <TextBlock TextWrapping="Wrap" Text="Baud Rate (bps)" VerticalAlignment="Center" MinWidth="150"/>
                <TextBox x:Name="tbbaudRate" Height="23" TextWrapping="Wrap" MinWidth="200" Text="{Binding SerialPortComm.BaudRate}" />
            </StackPanel>
        </StackPanel>
    </ScrollViewer>
    **<Button Content="Connect" HorizontalAlignment="Right" VerticalAlignment="Bottom" Click="Button_Connect"/>**
</Grid>

我的问题是如何从后面的代码访问 SerialPort?类在哪里实际声明。 iirc,我从不调用任何串口构造函数。

这是后面的代码。

        private void Button_Connect(object sender, RoutedEventArgs e)
    {
        **//SerialPortComm - doesnt work**
        **//SerialCommDataSource - doest work**
    }

如何从后面的代码访问串口对象?

谢谢。

【问题讨论】:

    标签: c# wpf xaml resources


    【解决方案1】:

    你可以的

    App.Current.Resources["SerialCommDataSource"] as SerialCom;
    

    基本上你已经添加了一个带有SerialCommDataSource 键的全局资源,你可以像上面那样得到它

    【讨论】:

    • 这行得通。谢谢。好像我在浪费我的时间写很长的问题。:)
    • @publicENEMY 从不,有一个漂亮的小完整代码示例来说明您的问题总是好的。如果您的问题不是这么简单,那肯定会有所帮助
    猜你喜欢
    • 2020-01-15
    • 1970-01-01
    • 2016-05-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-10-30
    • 1970-01-01
    相关资源
    最近更新 更多