-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathAutoComplete.xaml.cs
51 lines (46 loc) · 1.46 KB
/
AutoComplete.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#region Copyright Syncfusion® Inc. 2001-2025.
// Copyright Syncfusion® Inc. 2001-2025. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// licensing@syncfusion.com. Any infringement will be prosecuted under
// applicable laws.
#endregion
namespace syncfusion.dropdowndemos.wpf
{
/// <summary>
/// Interaction logic for AutoComplete.xaml
/// </summary>
public partial class AutoComplete
{
/// <summary>
/// Initializes the instance of <see cref="AutoComplete"/>class.
/// </summary>
public AutoComplete()
{
InitializeComponent();
}
/// <summary>
/// Sets the themes.
/// </summary>
/// <param name="themename"></param>
public AutoComplete(string themename) : base(themename)
{
InitializeComponent();
}
/// <summary>
/// Method used to dipose the controls.
/// </summary>
/// <param name="disposing"></param>
protected override void Dispose(bool disposing)
{
// Release all managed resources
this.Resources.Clear();
if(this.multiSelectionComboBox != null)
{
this.multiSelectionComboBox.Dispose();
this.multiSelectionComboBox = null;
}
base.Dispose(disposing);
}
}
}