상속: System.Windows.Controls.UserControl
        public void Initialize(SyncWithScrollViewerWidthTestControl control)
        {
            control.Width = 300;
            control.Height = 200;

            control.listBox.ItemsSource = items;
            LoadSampleData(1);
        }
 public void Remove_Last_Item(SyncWithScrollViewerWidthTestControl control)
 {
     items.Remove(items.LastOrDefault());
 }
 public void Add_Item(SyncWithScrollViewerWidthTestControl control)
 {
     AddItem();
 }