当前位置: 首页>>代码示例>>C#>>正文


C# ListBox.SelectedItemsList方法代码示例

本文整理汇总了C#中System.Windows.Controls.ListBox.SelectedItemsList方法的典型用法代码示例。如果您正苦于以下问题:C# ListBox.SelectedItemsList方法的具体用法?C# ListBox.SelectedItemsList怎么用?C# ListBox.SelectedItemsList使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Controls.ListBox的用法示例。


在下文中一共展示了ListBox.SelectedItemsList方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: bxMoveItems

        /// <summary>アイテムを上下に一つ移動</summary>
        public bool bxMoveItems(ListBox box, int direction, IList boxItemsSource = null)
        {
            try
            {
                if (box == null || box.SelectedIndex < 0) return false;

                var boxItems = boxItemsSource ?? box.Items;
                var selected = box.SelectedItemsList();//連続移動の視点固定のため順番保持
                int iCount = boxItems.Count;//固定
                var r = direction >= 0 ? (Func<int, int>)(i => iCount - 1 - i) : (i => i);

                for (int i = 0; i < boxItems.Count; i++)
                {
                    var item = boxItems[r(i)];
                    if (box.SelectedItems.Contains(item) == true)
                    {
                        boxItems.RemoveAt(r(i));
                        boxItems.Insert(r((i + iCount - 1) % iCount), item);
                        if (i == 0) break;
                    }
                }

                box.UnselectAll();
                TargetBoxItemsRefresh(box, boxItemsSource);
                box.SelectedItemsAdd(selected);
                box.ScrollIntoView(direction < 0 ? selected[0] : selected.Last());
            }
            catch (Exception ex) { MessageBox.Show(ex.Message + "\r\n" + ex.StackTrace); }
            return true;
        }
开发者ID:nekopanda,项目名称:EDCB,代码行数:31,代码来源:BoxExchangeEditor.cs

示例2: bxMoveItemsDrop

        /// <summary>アイテムをボックス内にドロップ</summary>
        public bool bxMoveItemsDrop(ListBox box, object dropTo, IList boxItemsSource = null)
        {
            try
            {
                if (box == null || box.SelectedIndex < 0) return false;

                var boxItems = boxItemsSource ?? box.Items;

                //選択の上と下でドロップ位置を調整する。
                int idx_dropTo = boxItems.IndexOf(dropTo);
                idx_dropTo = idx_dropTo < 0 ? boxItems.Count : idx_dropTo;
                idx_dropTo += (idx_dropTo >= box.SelectedIndex ? 1 : 0);

                var selected = box.SelectedItemsList(true);

                var insertItem = boxItems.Cast<object>().Skip(idx_dropTo).FirstOrDefault(item => !selected.Contains(item));
                boxItems.RemoveItemsAx(selected);//削除はこのタイミング
                int insertIdx = insertItem == null ? boxItems.Count : boxItems.IndexOf(insertItem);
                boxItems.InsertItemsAx(insertIdx, selected);
                box.SelectedItemsAdd(selected);

                TargetBoxItemsRefresh(box, boxItemsSource);
                box.ScrollIntoViewIndex(insertItem == null ? int.MaxValue : box.SelectedIndex);
            }
            catch (Exception ex) { MessageBox.Show(ex.Message + "\r\n" + ex.StackTrace); }
            return true;
        }
开发者ID:nekopanda,项目名称:EDCB,代码行数:28,代码来源:BoxExchangeEditor.cs

示例3: bxAddItems

 /// <summary>選択アイテム追加・挿入</summary>
 public bool bxAddItems(ListBox src, ListBox target, bool IsInsert = false, IList trgItemsSource = null)
 {
     if (src == null) return false;
     //
     return bxAddItems(src.SelectedItemsList(true), target, IsInsert, trgItemsSource);
 }
开发者ID:nekopanda,项目名称:EDCB,代码行数:7,代码来源:BoxExchangeEditor.cs


注:本文中的System.Windows.Controls.ListBox.SelectedItemsList方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。