public void Initialize()
        {
            // set options for list box
            DrawMode = DrawMode.OwnerDrawFixed;
            SelectionMode = SelectionMode.One;
            HorizontalScrollbar = false;
            IntegralHeight = false;

            // create the thumbnail manager
            _thumbnailManager = new VideoThumbNailManager(this);
            _thumbnailManager.ThumbnailDownloadCompleted += _thumbnailManager_ThumbnailDownloadCompleted;
        }
예제 #2
0
        public void Initialize()
        {
            // set options for list box
            DrawMode            = DrawMode.OwnerDrawFixed;
            SelectionMode       = SelectionMode.One;
            HorizontalScrollbar = false;
            IntegralHeight      = false;

            // create the thumbnail manager
            _thumbnailManager = new VideoThumbNailManager(this);
            _thumbnailManager.ThumbnailDownloadCompleted += _thumbnailManager_ThumbnailDownloadCompleted;
        }