我正在使用 c# 开发一个 win 表单应用程序我想向我的应用程序添加一个功能,通过它我可以根据用户输入更改 lable.text
我想使用一个 xml 文件,这样我就可以将一些标签设置为预定义的值,这些值可以随时更改,而无需重新编译应用程序或更改我的应用程序的语言
我有一个要在表单应用程序中使用的 xml 文件
<?xml version="1.0" encoding="utf-8" ?>
<product>
<product_id>1</product_id>
<product_name>Product 1</product_name>
<product_price>1000</product_price>
</product>
<product>
<product_id>2</product_id>
<product_name>Product 2</product_name>
<product_price>2000</product_price>
</product>
<product>
<product_id>3</product_id>
<product_name>Product 3</product_name>
<product_price>3000</product_price>
</product>
<product>
<product_id>4</product_id>
<product_name>Product 4</product_name>
<product_price>4000</product_price>
</product>
在我的应用程序中,我有一些textbox1、textbox2和textbox3和 Lables 作为 Lable1、Lable2、Lable3 的文本
关于textbox1中的文本更改我想更改lable1.text的值根据 id 例如如果用户在 textbox1 中输入 1 那么标签文本应更改为产品 1
作为 c# 和编程的初学者,不知道如何使它工作....