SelectAllSelection() public method

public SelectAllSelection ( ) : bool
return bool
コード例 #1
0
ファイル: ComboBox.cs プロジェクト: ABEMBARKA/monoUI
        public bool SelectAllSelection()
        {
            bool success = selectionHelper.SelectAllSelection();

            if (success)
            {
                RaiseSelectionChanged(String.Empty);
            }
            return(success);
        }
コード例 #2
0
ファイル: List.cs プロジェクト: ABEMBARKA/monoUI
 public bool SelectAllSelection()
 {
     return(selectionHelper.SelectAllSelection());
 }
コード例 #3
0
 public bool SelectAllSelection()
 {
     return(selectionHelper.SelectAllSelection());
     //in the past, we did this because ComboBox doesn't support this: return false;
 }