Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVsevolod Kukol <sevoku@microsoft.com>2019-12-18 08:34:18 +0300
committerVsevolod Kukol <sevoku@microsoft.com>2019-12-18 08:34:18 +0300
commit0e96cdf19f4ee68954d52d9e77223074bede56e2 (patch)
tree1b915677080ee4862c2b97996fe9809efde35e09 /TestApps
parent485b51769c480295511348657c60287c8b7b093c (diff)
Add completion support to ComboBoxEntry
Completion can be enabled using the new ComboBoxEntry.Completes property.
Diffstat (limited to 'TestApps')
-rw-r--r--TestApps/Samples/Samples/ComboBoxes.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/TestApps/Samples/Samples/ComboBoxes.cs b/TestApps/Samples/Samples/ComboBoxes.cs
index 10cd66a9..b6578d3c 100644
--- a/TestApps/Samples/Samples/ComboBoxes.cs
+++ b/TestApps/Samples/Samples/ComboBoxes.cs
@@ -91,6 +91,7 @@ namespace Samples
c4.TextEntry.SelectionChanged += delegate {
la4.Text = "Selected text: " + c4.TextEntry.SelectedText;
};
+ c4.Completes = true;
HBox selBox = new HBox ();
Label las = new Label ("Selection:");