Example #1
0
 public static void UserUpdate(PixivUser h, int index, int max)
 {
     Global.MainWindow.label.Content = $"{index}/{max}";
     Global.MainWindow.MainPanel.Children.Add(new UserControls.Panels.PixivUserPanel(h));
 }
Example #2
0
 public PixivUserPanel(PixivUser user)
 {
     this.user = user;
     InitializeComponent();
     Init();
 }