Visual Studio 2015社区中的C #WindowsForms应用程序。 我用2个值创建了combobox项目 当我创建按钮并且添加比较条件时。
client its string = text selected in combobox
If client = text1 value - launch app1
If client = text2 value - launch app2
但是当我使用相同的功能时,我会收到错误。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Diagnostics;
namespace WindowsFormsApplication3
public partial class Form1 : Form
string client;
public Form1()
InitializeComponent();
public void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
comboBox1.DisplayMember.ToString();
string client = comboBox1.Text;
public void button1_Click_1(object sender, EventArgs e)
if (client.Equals("notepad"))
Process.Start("notepad.exe");
但是当我启动app时,我会收到System.NullReferenceException
错误。