2 changed files with 41 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||||
|
<gui:OptionPanel x:Class="ICSharpCode.SharpDevelop.Editor.CodeCompletion.CodeCompletionPanelXaml" |
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
||||||
|
xmlns:core="http://icsharpcode.net/sharpdevelop/core" |
||||||
|
xmlns:gui="clr-namespace:ICSharpCode.SharpDevelop.Gui;assembly=ICSharpCode.SharpDevelop"> |
||||||
|
<Grid> |
||||||
|
<Button Content="Hi"></Button> |
||||||
|
</Grid> |
||||||
|
</gui:OptionPanel> |
@ -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 |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for CodeCompletionPanelXaml.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class CodeCompletionPanelXaml : OptionPanel |
||||||
|
{ |
||||||
|
public CodeCompletionPanelXaml() |
||||||
|
{ |
||||||
|
InitializeComponent(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue