12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace OTSSysMgrApp
- {
- public partial class ShowXRayElementResultForm : Form
- {
- public ShowXRayElementResultForm(int ElementCount,string ElementContent)
- {
- InitializeComponent();
- lblElementCount.Text = ElementCount.ToString();
- lblElementContent.Text = ElementContent;
- }
- }
- }
|