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**
}
コード ビハインドからシリアル ポート オブジェクトにアクセスするにはどうすればよいですか?
ありがとう。