You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

StatusBarOfHunter.xaml.cs 990 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using System.Text;
  10. using System.Threading.Tasks;
  11. using System.Windows;
  12. using System.Windows.Controls;
  13. using System.Windows.Data;
  14. using System.Windows.Documents;
  15. using System.Windows.Input;
  16. using System.Windows.Media;
  17. using System.Windows.Media.Imaging;
  18. using System.Windows.Shapes;
  19. namespace Client
  20. {
  21. /// <summary>
  22. /// StatusBarOfHunter.xaml 的交互逻辑
  23. /// </summary>
  24. public partial class StatusBarOfHunter : UserControl
  25. {
  26. public StatusBarOfHunter(Grid parent, int Row, int Column)
  27. {
  28. InitializeComponent();
  29. parent.Children.Add(this);
  30. Grid.SetColumn(this, Column);
  31. Grid.SetColumnSpan(this, 2);
  32. Grid.SetRow(this, Row);
  33. initialized = false;
  34. }
  35. private bool initialized;
  36. }
  37. }