diff --git a/src/Main/Base/Project/Src/Editor/CodeCompletion/CodeCompletionPanelXaml.xaml b/src/Main/Base/Project/Src/Editor/CodeCompletion/CodeCompletionPanelXaml.xaml new file mode 100644 index 0000000000..2cb899f136 --- /dev/null +++ b/src/Main/Base/Project/Src/Editor/CodeCompletion/CodeCompletionPanelXaml.xaml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/src/Main/Base/Project/Src/Editor/CodeCompletion/CodeCompletionPanelXaml.xaml.cs b/src/Main/Base/Project/Src/Editor/CodeCompletion/CodeCompletionPanelXaml.xaml.cs new file mode 100644 index 0000000000..86be882d2c --- /dev/null +++ b/src/Main/Base/Project/Src/Editor/CodeCompletion/CodeCompletionPanelXaml.xaml.cs @@ -0,0 +1,32 @@ +/* + * Created by SharpDevelop. + * User: Peter Forstmeier + * Date: 22.10.2012 + * Time: 20:11 + * To change this template use Tools | Options | Coding | Edit Standard Headers. + */ +using System; +using System.Collections.Generic; +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; + +using ICSharpCode.SharpDevelop.Gui; + +namespace ICSharpCode.SharpDevelop.Editor.CodeCompletion +{ + /// + /// Interaction logic for CodeCompletionPanelXaml.xaml + /// + public partial class CodeCompletionPanelXaml : OptionPanel + { + public CodeCompletionPanelXaml() + { + InitializeComponent(); + } + } +} \ No newline at end of file