私のフォームには、2 つのフィールドが設定されています。アイテムの場所とサブエリア。ユーザーが選択した場所に基づいて、サブエリア フィールドに入力しようとしています。たとえば、「場所 4」を選択します。その場所のサブエリアは、たとえば、A、B、および C の 3 つだけです。場所ボックスで選択すると、サブエリア ボックスには A、B、および C のみが表示されます。すべての場所があり、許可されていますappsettings.xml という xml ファイルのサブ領域。プログラムに xml ファイルを読み込ませ、サブ領域フィールドに有効なデータのみを入力させるにはどうすればよいですか? 以下は、xml ファイルの設定方法の例です。
<?xml version="1.0" encoding="utf-8" ?>
<MerchandiseTrack>
<Merchandise_Zones Application_Data="Test-Run">
<KeyBoard_App>
<AppString>c windows osk.exe</AppString>
</KeyBoard_App>
<Storage_Location>
<head id="Location"> // Name of box on app
<body id="04"> // Name of Location within the box
<Sub-Area>A, B, C,</Sub-Area> // Allowed sub-areas
</body>
</head>
<head id="Location"> // Name of box on app
<body id="05"> //Name of Location within the box
<Sub-Area>P, L, R, B</Sub-Area> // Allowed sub-areas
</body>
</head>
<head id="Location"> // Name of box on app
<body id="14"> //Name of Location within the box
<Sub-Area>A, X, C </Sub-Area> //Name of Location within the box
</body>
</head>
</Storage_Location>
</Merchandise_Zones>
</MerchandiseTrack>