我是C#的新手和一般的编程。
我创建了一个简单的plc程序(步骤7),在PLSIM模拟器上模拟。
我希望使用Siemens S7ProSim COM Object
引用在C#中使用WPF接口控制此程序。
这是问题所在: 当我想将CPU状态分配给我的标签时,会显示以下消息:
错误1' System.Windows.Controls.Label'不包含'文字'的定义没有扩展方法' Text'接受类型' System.Windows.Controls.Label'的第一个参数。可以找到(您是否缺少using指令或程序集引用?)C:\ Users \ Lenovo \ Documents \ Visual Studio 2010 \ Projects \ CSProject \ CSProject \ MainWindow.xaml.cs 32 28 CSProject 这是我的proramm和我的wpf界面:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace CSProject
{
public partial class MainWindow : Window
{
public S7PROSIMLib.S7ProSim ps = new S7PROSIMLib.S7ProSim();
public MainWindow()
{
InitializeComponent();
}
private void button1_Click(object sender, RoutedEventArgs e)
{
ps.Connect();
label_CPUState.Text = ps.GetState();
labelScanMode.Text = ps.GetScanMode().ToString();
}
}
}
非常感谢。
答案 0 :(得分:1)
我相信你想要Content
的{{1}}属性,而不是Label
属性。 Text
是Winforms。
所以,简单地说:
Text