示例#1
0
        public TagUpdate(Tag tags, TgList parentWindow)
        {
            InitializeComponent();
            myParentWindow = parentWindow;
            thisTag        = tags;

            txtPrice.Text = thisTag.Price;
            txtTitle.Text = thisTag.Title;
        }
示例#2
0
 private void btnTags_Click(object sender, RoutedEventArgs e)
 {
     Tags.TgList listwindows = new Tags.TgList();
     listwindows.Show();
 }
示例#3
0
 public TagAdd(TgList parentWindow)
 {
     InitializeComponent();
     myParentWindow = parentWindow;
 }