ShowXRayElementResultForm.cs 535 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace OTSSysMgrApp
  10. {
  11. public partial class ShowXRayElementResultForm : Form
  12. {
  13. public ShowXRayElementResultForm(int ElementCount,string ElementContent)
  14. {
  15. InitializeComponent();
  16. lblElementCount.Text = ElementCount.ToString();
  17. lblElementContent.Text = ElementContent;
  18. }
  19. }
  20. }