Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GPDL/HeuristicLab.Problems.GPDL.Views/3.4/CodeEditor.xaml @ 9674

Last change on this file since 9674 was 9674, checked in by gkronber, 11 years ago

#2026: Worked on integration of ICSharpCode.AvalonEdit control for GPDL syntax-highlighting and error reporting.

File size: 855 bytes
Line 
1<UserControl
2             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
5             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6             xmlns:avalonedit="http://icsharpcode.net/sharpdevelop/avalonedit" x:Class="HeuristicLab.Problems.GPDL.Views.CodeEditor"
7             mc:Ignorable="d"
8             d:DesignHeight="300" d:DesignWidth="300">
9    <Grid>
10        <avalonedit:TextEditor Name="textEditor" SyntaxHighlighting="{Binding syntaxHighlighting}" FontFamily="Consolas" MouseWheel="textEditor_MouseWheel" KeyDown="textEditor_KeyDown" KeyUp="textEditor_KeyUp" PreviewMouseWheel="textEditor_PreviewMouseWheel" />
11    </Grid>
12</UserControl>
Note: See TracBrowser for help on using the repository browser.