亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? objectlistview.cs

?? Linux 恢復盤制作工具 process調用busybox dd實現寫*.img鏡像
?? CS
?? 第 1 頁 / 共 5 頁
字號:
        }

        /// <summary>
        /// Get the ListViewItem that is currently selected . If no row is selected, or more than one is selected, return null.
        /// </summary>
        [Browsable(false),
         DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public virtual ListViewItem SelectedItem
        {
            get {
                if (this.SelectedIndices.Count == 1)
                    return this.GetItem(this.SelectedIndices[0]);
                else
                    return null;
            }
            set {
                this.SelectedIndices.Clear();
                if (value != null)
                    this.SelectedIndices.Add(value.Index);
            }
        }

        /// <summary>
        /// Get the model object from the currently selected row. If no row is selected, or more than one is selected, return null.
        /// Select the row that is displaying the given model object. All other rows are deselected.
        /// </summary>
        [Browsable(false),
         DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public virtual Object SelectedObject
        {
            get { return this.GetSelectedObject(); }
            set { this.SelectObject(value); }
        }

        /// <summary>
        /// Get the model objects from the currently selected rows. If no row is selected, the returned List will be empty.
        /// When setting this value, select the rows that is displaying the given model objects. All other rows are deselected.
        /// </summary>
        [Browsable(false),
         DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public virtual IList SelectedObjects
        {
            get { return this.GetSelectedObjects(); }
            set { this.SelectObjects(value); }
        }

        /// <summary>
        /// Should the list view show a bitmap in the column header to show the sort direction?
        /// </summary>
        /// <remarks>
        /// The only reason for not wanting to have sort indicators is that, on pre-XP versions of
        /// Windows, having sort indicators required the ListView to have a small image list, and
        /// as soon as you give a ListView a SmallImageList, the text of column 0 is bumped 16
        /// pixels to the right, even if you never used an image.
        /// </remarks>
        [Category("Behavior - ObjectListView"),
         Description("Should the list view show sort indicators in the column headers?"),
         DefaultValue(true)]
        public virtual bool ShowSortIndicators
        {
            get { return showSortIndicators; }
            set { showSortIndicators = value; }
        }
        private bool showSortIndicators;

        /// <summary>
        /// Should the list view show images on subitems?
        /// </summary>
        /// <remarks>
        /// <para>Virtual lists have to be owner drawn in order to show images on subitems?</para>
        /// </remarks>
        [Category("Behavior - ObjectListView"),
         Description("Should the list view show images on subitems?"),
         DefaultValue(false)]
        public virtual bool ShowImagesOnSubItems
        {
            get {
#if MONO
                return false;
#else
                return showImagesOnSubItems;
#endif
            }
            set {
                showImagesOnSubItems = value;
                if (value && this.VirtualMode)
                    this.OwnerDraw = true;
            }
        }
        private bool showImagesOnSubItems;

        /// <summary>
        /// This property controls whether group labels will be suffixed with a count of items.
        /// </summary>
        /// <remarks>
        /// The format of the suffix is controlled by GroupWithItemCountFormat/GroupWithItemCountSingularFormat properties
        /// </remarks>
        [Category("Behavior - ObjectListView"),
         Description("Will group titles be suffixed with a count of the items in the group?"),
         DefaultValue(false)]
        public virtual bool ShowItemCountOnGroups
        {
            get { return showItemCountOnGroups; }
            set { showItemCountOnGroups = value; }
        }
        private bool showItemCountOnGroups;

        /// <summary>
        /// Override the SmallImageList property so we can correctly shadow its operations.
        /// </summary>
        /// <remarks><para>If you use the RowHeight property to specify the row height, the SmallImageList
        /// must be fully initialised before setting/changing the RowHeight. If you add new images to the image
        /// list after setting the RowHeight, you must assign the imagelist to the control again. Something as simple
        /// as this will work:
        /// <code>listView1.SmallImageList = listView1.SmallImageList;</code></para>
        /// </remarks>
        new public ImageList SmallImageList
        {
            get { return this.shadowedImageList; }
            set {
                this.shadowedImageList = value;
                this.SetupExternalImageList();
            }
        }
        private ImageList shadowedImageList = null;

        /// <summary>
        /// When the listview is grouped, should the items be sorted by the primary column?
        /// If this is false, the items will be sorted by the same column as they are grouped.
        /// </summary>
        [Category("Behavior - ObjectListView"),
         Description("When the listview is grouped, should the items be sorted by the primary column? If this is false, the items will be sorted by the same column as they are grouped."),
         DefaultValue(true)]
        public virtual bool SortGroupItemsByPrimaryColumn
        {
            get { return this.sortGroupItemsByPrimaryColumn; }
            set { this.sortGroupItemsByPrimaryColumn = value; }
        }
        private bool sortGroupItemsByPrimaryColumn = true;


        /// <summary>
        /// Should each row have a tri-state checkbox?
        /// </summary>
        /// <remarks>
        /// If this is true, the user can choose the third state (normally Indeterminate). Otherwise, user clicks
        /// alternate between checked and unchecked. CheckStateGetter can still return Indeterminate when this
        /// setting is false.
        /// </remarks>
        [Category("Behavior - ObjectListView"),
         Description("Should the primary column have a checkbox that behaves as a tri-state checkbox?"),
         DefaultValue(false)]
        public virtual bool TriStateCheckBoxes {
            get { return triStateCheckBoxes;  }
            set {
                triStateCheckBoxes = value;
                if (value && !this.CheckBoxes)
                    this.CheckBoxes = true;
                this.InitializeStateImageList();
            }
        }
        private bool triStateCheckBoxes;

        /// <summary>
        /// Get or set the index of the top item of this listview
        /// </summary>
        /// <remarks>
        /// <para>
        /// This property only works when the listview is in Details view and not showing groups.
        /// </para>
        /// <para>
        /// The reason that it does not work when showing groups is that, when groups are enabled,
        /// the Windows m LVM_GETTOPINDEX always returns 0, regardless of the
        /// scroll position.
        /// </para>
        /// </remarks>
        [Browsable(false),
        DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
        public virtual int TopItemIndex
        {
            get {
                if (this.View == View.Details && this.TopItem != null)
                    return this.TopItem.Index;
                else
                    return -1;
            }
            set {
                int newTopIndex = Math.Min(value, this.GetItemCount() - 1);
                if (this.View == View.Details && newTopIndex >= 0) {
                    this.TopItem = this.Items[newTopIndex];

                    // Setting the TopItem sometimes gives off by one errors,
                    // that (bizarrely) are correct on a second attempt
                    if (this.TopItem != null && this.TopItem.Index != newTopIndex)
                        this.TopItem = this.GetItem(newTopIndex);
                }
            }
        }

        /// <summary>
        /// When resizing a column by dragging its divider, should any space filling columns be
        /// resized at each mouse move? If this is false, the filling columns will be
        /// updated when the mouse is released.
        /// </summary>
        /// <remarks>
        /// <para>
        /// In previous versions, setting this to true produced ugly behaviour, because every
        /// column to the right of the divider being dragged was updated twice: once when
        /// the column be resized changes size (this moves all the columns slightly to the right);
        /// then again when the filling columns are updated - they are shrunk
        /// so that the combined width is not more than the control, so everything jumps slightly back to the left again.
        /// </para>
        /// <para>
        /// But, as of v2.0, the change the Windows messages in place, so there is now only one update,
        /// and everything looks nice and smooth.
        /// </para>
        /// <para>
        /// However, it still looks odd when the space filling column
        /// is in the left of the column that is being resized: the right edge of the column is dragged, but
        /// its <b>left</b> edge moves, since the space filling column is shrinking.
        /// </para>
        /// <para>Given the above behavior is probably best to turn this property off if your space filling
        /// columns aren't the right-most columns.</para>
        /// </remarks>
        [Category("Behavior - ObjectListView"),
        Description("When resizing a column by dragging its divider, should any space filling columns be resized at each mouse move?"),
        DefaultValue(true)]
        public virtual bool UpdateSpaceFillingColumnsWhenDraggingColumnDivider
        {
            get { return updateSpaceFillingColumnsWhenDraggingColumnDivider; }
            set { updateSpaceFillingColumnsWhenDraggingColumnDivider = value; }
        }
        private bool updateSpaceFillingColumnsWhenDraggingColumnDivider = true;

        /// <summary>
        /// Should the list give a different background color to every second row?
        /// </summary>
        /// <remarks><para>The color of the alternate rows is given by AlternateRowBackColor.</para>
        /// <para>There is a "feature" in .NET for listviews in non-full-row-select mode, where
        /// selected rows are not drawn with their correct background color.</para></remarks>
        [Category("Appearance"),
         Description("Should the list view use a different backcolor to alternate rows?"),
         DefaultValue(false)]
        public virtual bool UseAlternatingBackColors
        {
            get { return useAlternatingBackColors; }
            set { useAlternatingBackColors = value; }
        }
        private bool useAlternatingBackColors;

        /// <summary>
        /// Should the selected row be drawn with non-standard foreground and background colors?
        /// </summary>
        /// <remarks>
        /// When this is enabled, the control becomes owner drawn.
        /// </remarks>
        [Category("Appearance"),
         Description("Should the selected row be drawn with non-standard foreground and background colors?"),
         DefaultValue(false)]
        public bool UseCustomSelectionColors
        {
            get { return this.useCustomSelectionColors; }
            set {
                this.useCustomSelectionColors = value;

                if (!this.DesignMode && value)
                    this.OwnerDraw = true;
            }
        }
        private bool useCustomSelectionColors;

        /// <summary

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色丁香久综合在线久综合在线观看| 久久久精品日韩欧美| 国产成人高清视频| 国产呦精品一区二区三区网站| 日韩高清不卡在线| 石原莉奈在线亚洲三区| 日日夜夜一区二区| 国产aⅴ综合色| 99riav久久精品riav| 粉嫩aⅴ一区二区三区四区 | 欧美成人精品1314www| 欧美精品少妇一区二区三区| 8x福利精品第一导航| 精品免费视频.| 亚洲一区二区欧美| 亚洲精品视频在线观看网站| 亚洲日本韩国一区| 亚洲国产精品一区二区久久| 日韩国产精品91| 97国产精品videossex| 精品成a人在线观看| 国产三级久久久| 国产精品久久久久久久久动漫| 一区二区三区在线视频观看58| 亚洲国产精品久久久久婷婷884| 国产在线精品一区在线观看麻豆| 精品一区二区三区影院在线午夜| 国产成人av一区二区| 欧美mv和日韩mv的网站| 亚洲影视在线播放| 91亚洲国产成人精品一区二区三| 欧美日韩一二三区| 国产视频一区二区在线| 亚洲宅男天堂在线观看无病毒| 国产精品99久久不卡二区| 91丨九色丨尤物| 日本一区二区三区在线观看| 蜜臀av国产精品久久久久| 99久久免费精品高清特色大片| 久久蜜桃一区二区| 韩国女主播成人在线观看| 欧美一级黄色片| 亚洲人成7777| 国产一区二区三区| 久久久国产精华| 国产精品99久久久久久似苏梦涵| 久久综合五月天婷婷伊人| 亚洲综合久久av| 欧美日韩中文字幕一区| 亚洲国产sm捆绑调教视频| 欧美在线视频不卡| 国产精品久久久久影院亚瑟| 成人在线一区二区三区| 日韩一区二区三区视频| 久久精品噜噜噜成人88aⅴ | 美女一区二区视频| 精品剧情在线观看| 国产成人av一区二区三区在线| 中文子幕无线码一区tr| 爽爽淫人综合网网站| 日韩色在线观看| 国产一区二区三区精品欧美日韩一区二区三区 | 亚洲宅男天堂在线观看无病毒| 91黄视频在线| 天堂精品中文字幕在线| 日韩一区二区在线观看视频| 韩国欧美国产一区| 国产精品大尺度| 欧美日韩一区 二区 三区 久久精品| 图片区日韩欧美亚洲| 一本一本大道香蕉久在线精品 | 欧美色综合网站| 亚洲欧美偷拍卡通变态| 精品视频999| 久久国产欧美日韩精品| 国产欧美一区二区精品秋霞影院| av男人天堂一区| 国产视频视频一区| 日本久久一区二区三区| 日本vs亚洲vs韩国一区三区二区 | 中文字幕在线一区| 久久99精品久久久久久动态图| 国产欧美日韩中文久久| 色天天综合色天天久久| 久久成人免费日本黄色| 亚洲人成网站在线| 精品播放一区二区| 欧美午夜精品一区二区三区| 国产经典欧美精品| 亚洲成人精品影院| 日韩午夜av一区| 色视频成人在线观看免| 国产乱理伦片在线观看夜一区| 亚洲国产欧美在线| 国产精品美女一区二区三区| 色综合久久综合中文综合网| 麻豆精品蜜桃视频网站| 亚洲日本在线a| 欧美精品成人一区二区三区四区| 久久99国内精品| 国产欧美日韩精品一区| 日韩欧美国产综合| 一级精品视频在线观看宜春院 | 欧美福利视频导航| 国产精品综合一区二区| 亚洲一区在线播放| 国产区在线观看成人精品| 欧美在线影院一区二区| 国产一区激情在线| 亚洲高清免费观看高清完整版在线观看| 91精品午夜视频| 欧美三片在线视频观看| 国产成人亚洲综合色影视| 亚洲成人免费观看| 中文字幕在线免费不卡| 26uuuu精品一区二区| 欧美日韩一区不卡| 懂色av一区二区在线播放| 精品一区二区三区在线播放视频| 亚洲综合丁香婷婷六月香| 日本一区二区免费在线| 制服丝袜av成人在线看| 色琪琪一区二区三区亚洲区| 成人午夜大片免费观看| 国产精品一线二线三线| 久久国产乱子精品免费女| 一区二区三区四区在线播放| 国产日韩欧美不卡在线| 日韩欧美卡一卡二| 欧美日本韩国一区| 91麻豆福利精品推荐| 色老汉av一区二区三区| 国产福利电影一区二区三区| 久久激情五月激情| 日韩国产一二三区| 亚洲bt欧美bt精品777| 日本一区二区综合亚洲| 日韩理论片中文av| 18涩涩午夜精品.www| 国产精品网站在线| 欧美激情中文字幕一区二区| ww久久中文字幕| 久久蜜臀中文字幕| 综合电影一区二区三区| 欧美国产成人在线| 国产精品网友自拍| 成人免费在线观看入口| 中文字幕在线一区免费| 国产精品国产三级国产| 亚洲一区二区在线视频| 亚洲影院免费观看| 午夜av一区二区| 一区二区三区免费网站| 亚洲六月丁香色婷婷综合久久 | 欧美电影精品一区二区| 亚洲精品一区在线观看| 国产免费成人在线视频| 亚洲男女一区二区三区| 亚洲欧美电影一区二区| 亚洲一区二区欧美日韩| 亚洲一级二级在线| 国产精品一色哟哟哟| hitomi一区二区三区精品| 91在线视频播放| 欧美午夜精品一区二区三区| 在线播放中文一区| 在线成人av影院| 亚洲欧美综合色| 亚洲在线视频网站| 日韩电影免费在线看| 国产一区二区三区免费| 一本一本久久a久久精品综合麻豆| 日本精品视频一区二区三区| 欧美另类z0zxhd电影| 精品成a人在线观看| 国产精品福利一区二区三区| 亚洲一区二区五区| 精品一区二区国语对白| 精品视频在线看| 久久久久久久一区| 一区二区在线看| 激情图区综合网| 在线影院国内精品| 精品国产乱码久久久久久久| 中文字幕一区在线观看| 日本亚洲三级在线| 不卡的电影网站| 欧美一区二区三级| 精品国产乱码久久久久久老虎 | 一区二区三区高清不卡| 激情欧美一区二区三区在线观看| 岛国一区二区在线观看| 精品福利在线导航| 亚洲风情在线资源站| 国产91精品免费| 制服视频三区第一页精品| 亚洲欧美另类小说视频| 成人福利在线看| 日韩欧美国产综合| 午夜精品一区二区三区电影天堂 |