using System; using System.Text; using System.Windows.Forms; using Script.Methods; public partial class UserScript:ScriptMethods,IProcessMethods { //the count of process //执行次数计数 int processCount ; int A; int B; string C; /// <summary> /// Initialize the field's value when compiling /// 预编译时变量初始化 /// </summary> public void Init() { //You can add other global fields here //变量初始化,其余变量可在该函数中添加 processCount = 0; A=2; B=2; } /// <summary> /// Enter the process function when running code once /// 流程执行一次进入Process函数 /// </summary> /// <returns></returns> public bool Process() { //You can add your codes here, for realizing your desired function //每次执行将进入该函数,此处添加所需的逻辑流程处理 if(A==2&&B==2) { C="1;NG;;2;NG"; } else if(A==1&&B==2) { C="1;OK;;2;NG"; } else if(A==2&&B==1) { C="1;NG;;2;OK"; } else if(A==1&&B==1) { C="1;OK;;2;OK"; } out0=C; return true; } } A输入了2,B输入了1,为什么输出结果是1;NG;;2;NG
时间: 2023-11-17 09:08:20 浏览: 81
根据你提供的代码,当A=2,B=1时,程序会执行第三个if语句,将C的值设置为"1;NG;;2;OK",而不是"1;NG;;2;NG"。因此,输出结果是"1;NG;;2;OK",而不是"1;NG;;2;NG"。
如果你想要输出"1;NG;;2;NG",需要修改第三个if语句的内容,例如:
```
if(A==2&&B==1)
{
C="1;NG;;2;NG";
}
```
这样,当A=2,B=1时,程序会执行第三个if语句,将C的值设置为"1;NG;;2;NG",输出结果就会是"1;NG;;2;NG"。
相关问题
上面代码的后台代码:using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; 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 HDSProject.Control { /// <summary> /// CustomFont.xaml 的交互逻辑 /// </summary> public partial class CustomFont : ItemsControl { public CustomFont() { InitializeComponent(); } private string title2 = "测试字体间距zjis"; public string Title2 { get { return title2; } set { title2 = value; OnPropertyChanged("Title2"); } } public event PropertyChangedEventHandler PropertyChanged; protected void OnPropertyChanged(string propertyName) { if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(propertyName)); } } } }
这是CustomFont控件的后台代码。它继承了ItemsControl,用于实现XAML代码中的列表显示功能。在构造函数中调用了InitializeComponent()方法来初始化控件。Title2是一个公共属性,用于绑定XAML代码中的ItemsSource属性。当Title2属性值发生变化时,会触发OnPropertyChanged方法来通知属性值的变化。OnPropertyChanged方法中触发了一个PropertyChanged事件,用于通知绑定到Title2的界面元素进行更新。
using System; using System.Text; using System.Windows.Forms; using Script.Methods; /************************************ Shell Module default code: using .NET Framwwork 4.6.1 *************************************/ public partial class UserScript:ScriptMethods,IProcessMethods { //the count of process //执行次数计数 int processCount ; /// <summary> /// Initialize the field's value when compiling /// 预编译时变量初始化 /// </summary> public void Init() { //You can add other global fields here //变量初始化,其余变量可在该函数中添加 processCount = 0; } /// <summary> /// Enter the process function when running code once /// 流程执行一次进入Process函数 /// </summary> /// <returns></returns> public bool Process() { //You can add your codes here, for realizing your desired function //每次执行将进入该函数,此处添加所需的逻辑流程处理 return true; } } 这是海康的脚本,我需要把刚才的音频播放嵌入到里面,每次执行的时候播放一遍音频
你可以将音频播放的代码嵌入到海康脚本中的`Process`方法中,这样每次执行脚本时都会播放音频。
以下是修改后的海康脚本示例代码:
```csharp
using System;
using System.Text;
using System.Windows.Forms;
using System.Media;
using Script.Methods;
public partial class UserScript : ScriptMethods, IProcessMethods
{
// the count of process
int processCount;
/// <summary>
/// Initialize the field's value when compiling
/// </summary>
public void Init()
{
processCount = 0;
}
/// <summary>
/// Enter the process function when running code once
/// </summary>
/// <returns></returns>
public bool Process()
{
// Add your desired function logic here
// ...
// Play audio file
string filePath = @"D:\music\NotIn.wav";
try
{
using (SoundPlayer player = new SoundPlayer(filePath))
{
player.Play();
while (player.IsLoadCompleted == false)
{
System.Threading.Thread.Sleep(100);
}
}
}
catch (Exception ex)
{
MessageBox.Show("Error playing audio file: " + ex.Message);
}
// Increment the process count
processCount++;
return true;
}
}
```
请确保将音频文件的路径修改为正确的路径,并且已经添加了对`System.Media`命名空间的引用。这样每次执行脚本时,都会播放一遍音频文件。
希望这个示例对你有所帮助!如果还有其他问题,请随时提问。
阅读全文