Skip to content

Commit 23c8c44

Browse files
DevExpressExampleBotDevExpressExampleBot
DevExpressExampleBot
authored and
DevExpressExampleBot
committedJun 18, 2022
Source auto update [skip ci]
1 parent 2396c15 commit 23c8c44

File tree

4 files changed

+162
-162
lines changed

4 files changed

+162
-162
lines changed
 

Diff for: ‎CS/SyntaxHighlightSimple/SyntaxHighlightSimple.csproj

+8-8
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
3636
<ItemGroup>
37-
<Reference Include="DevExpress.CodeParser.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
38-
<Reference Include="DevExpress.Office.v18.2.Core, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
39-
<Reference Include="DevExpress.RichEdit.v18.2.Core, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
40-
<Reference Include="DevExpress.Data.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
41-
<Reference Include="DevExpress.Utils.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
42-
<Reference Include="DevExpress.Mvvm.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
43-
<Reference Include="DevExpress.Xpf.Core.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
44-
<Reference Include="DevExpress.Xpf.RichEdit.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
37+
<Reference Include="DevExpress.CodeParser.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
38+
<Reference Include="DevExpress.Office.v18.2.Core, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
39+
<Reference Include="DevExpress.RichEdit.v18.2.Core, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
40+
<Reference Include="DevExpress.Data.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
41+
<Reference Include="DevExpress.Utils.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
42+
<Reference Include="DevExpress.Mvvm.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
43+
<Reference Include="DevExpress.Xpf.Core.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
44+
<Reference Include="DevExpress.Xpf.RichEdit.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
4545
<Reference Include="System" />
4646
<Reference Include="System.Data" />
4747
<Reference Include="System.Drawing" />

Diff for: ‎VB/SyntaxHighlightSimple/Application.xaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<Application x:Class="SyntaxHighlightSimple.App"
2-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4-
xmlns:local="clr-namespace:SyntaxHighlightSimple"
5-
StartupUri="MainWindow.xaml">
6-
<Application.Resources>
7-
8-
</Application.Resources>
9-
</Application>
1+
<Application x:Class="SyntaxHighlightSimple.App"
2+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4+
xmlns:local="clr-namespace:SyntaxHighlightSimple"
5+
StartupUri="MainWindow.xaml">
6+
<Application.Resources>
7+
8+
</Application.Resources>
9+
</Application>

Diff for: ‎VB/SyntaxHighlightSimple/MainWindow.xaml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<dx:ThemedWindow x:Class="SyntaxHighlightSimple.MainWindow" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800"
2-
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
3-
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4-
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5-
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6-
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7-
xmlns:local="clr-namespace:SyntaxHighlightSimple"
8-
xmlns:dxre="http://schemas.devexpress.com/winfx/2008/xaml/richedit">
9-
<Grid>
10-
<dxre:RichEditControl x:Name="richEditControl1" ActiveViewType="Draft" Loaded="richEditControl1_Loaded"/>
11-
</Grid>
12-
</dx:ThemedWindow>
1+
<dx:ThemedWindow x:Class="SyntaxHighlightSimple.MainWindow" mc:Ignorable="d" Title="MainWindow" Height="450" Width="800"
2+
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
3+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
6+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
7+
xmlns:local="clr-namespace:SyntaxHighlightSimple"
8+
xmlns:dxre="http://schemas.devexpress.com/winfx/2008/xaml/richedit">
9+
<Grid>
10+
<dxre:RichEditControl x:Name="richEditControl1" ActiveViewType="Draft" Loaded="richEditControl1_Loaded"/>
11+
</Grid>
12+
</dx:ThemedWindow>
+133-133
Original file line numberDiff line numberDiff line change
@@ -1,133 +1,133 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6-
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{11EF734D-67A0-4426-A264-6EA4627884AD}</ProjectGuid>
8-
<OutputType>WinExe</OutputType>
9-
<RootNamespace></RootNamespace>
10-
<AssemblyName>SyntaxHighlightSimple</AssemblyName>
11-
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12-
<FileAlignment>512</FileAlignment>
13-
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
14-
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15-
<OptionExplicit>On</OptionExplicit>
16-
<OptionCompare>Binary</OptionCompare>
17-
<OptionStrict>Off</OptionStrict>
18-
<OptionInfer>On</OptionInfer>
19-
</PropertyGroup>
20-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21-
<PlatformTarget>AnyCPU</PlatformTarget>
22-
<DebugSymbols>true</DebugSymbols>
23-
<DebugType>full</DebugType>
24-
<Optimize>false</Optimize>
25-
<OutputPath>bin\Debug\</OutputPath>
26-
<DefineDebug>true</DefineDebug>
27-
<DefineTrace>true</DefineTrace>
28-
<ErrorReport>prompt</ErrorReport>
29-
</PropertyGroup>
30-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31-
<PlatformTarget>AnyCPU</PlatformTarget>
32-
<DebugType>pdbonly</DebugType>
33-
<Optimize>true</Optimize>
34-
<OutputPath>bin\Release\</OutputPath>
35-
<DefineDebug>false</DefineDebug>
36-
<DefineTrace>true</DefineTrace>
37-
<ErrorReport>prompt</ErrorReport>
38-
</PropertyGroup>
39-
<ItemGroup>
40-
<Import Include="Microsoft.VisualBasic" />
41-
<Import Include="System.Collections.Generic" />
42-
<Import Include="System.Collections" />
43-
<Import Include="System.Diagnostics" />
44-
<Import Include="System.Linq" />
45-
<Import Include="System.Xml.Linq" />
46-
<Import Include="System.Data" />
47-
<Import Include="System.Drawing" />
48-
<Import Include="System.Windows.Forms" />
49-
<Import Include="System.Windows.Controls" />
50-
<Import Include="System.Windows.Data" />
51-
<Import Include="System.Windows.Shapes" />
52-
<Import Include="System.Windows.Documents" />
53-
<Import Include="System.Windows.Input" />
54-
<Import Include="System.Windows.Media.Imaging" />
55-
<Import Include="System.Windows.Media" />
56-
<Import Include="System.Windows.Navigation" />
57-
<Import Include="System.Windows" />
58-
<Import Include="System" />
59-
</ItemGroup>
60-
<ItemGroup>
61-
<Reference Include="DevExpress.CodeParser.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
62-
<Reference Include="DevExpress.Office.v18.2.Core, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
63-
<Reference Include="DevExpress.RichEdit.v18.2.Core, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
64-
<Reference Include="DevExpress.Data.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
65-
<Reference Include="DevExpress.Utils.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
66-
<Reference Include="DevExpress.Mvvm.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
67-
<Reference Include="DevExpress.Xpf.Core.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
68-
<Reference Include="DevExpress.Xpf.RichEdit.v18.2, Version=18.2.16.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
69-
<Reference Include="System" />
70-
<Reference Include="System.Data" />
71-
<Reference Include="System.Drawing" />
72-
<Reference Include="System.Windows.Forms" />
73-
<Reference Include="System.Xml" />
74-
<Reference Include="Microsoft.CSharp" />
75-
<Reference Include="System.Core" />
76-
<Reference Include="System.Xml.Linq" />
77-
<Reference Include="System.Data.DataSetExtensions" />
78-
<Reference Include="System.Net.Http" />
79-
<Reference Include="System.Xaml">
80-
<RequiredTargetFramework>4.0</RequiredTargetFramework>
81-
</Reference>
82-
<Reference Include="WindowsBase" />
83-
<Reference Include="PresentationCore" />
84-
<Reference Include="PresentationFramework" />
85-
</ItemGroup>
86-
<ItemGroup>
87-
<ApplicationDefinition Include="Application.xaml">
88-
<Generator>MSBuild:Compile</Generator>
89-
<SubType>Designer</SubType>
90-
</ApplicationDefinition>
91-
<Page Include="MainWindow.xaml">
92-
<Generator>MSBuild:Compile</Generator>
93-
<SubType>Designer</SubType>
94-
</Page>
95-
<Compile Include="Application.xaml.vb">
96-
<DependentUpon>Application.xaml</DependentUpon>
97-
<SubType>Code</SubType>
98-
</Compile>
99-
<Compile Include="MainWindow.xaml.vb">
100-
<DependentUpon>MainWindow.xaml</DependentUpon>
101-
<SubType>Code</SubType>
102-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
103-
</Compile>
104-
</ItemGroup>
105-
<ItemGroup>
106-
<Compile Include="My Project\AssemblyInfo.vb">
107-
<SubType>Code</SubType>
108-
</Compile>
109-
<Compile Include="My Project\Resources.Designer.vb">
110-
<AutoGen>True</AutoGen>
111-
<DesignTime>True</DesignTime>
112-
<DependentUpon>Resources.resx</DependentUpon>
113-
</Compile>
114-
<Compile Include="My Project\Settings.Designer.vb">
115-
<AutoGen>True</AutoGen>
116-
<DependentUpon>Settings.settings</DependentUpon>
117-
<DesignTimeSharedInput>True</DesignTimeSharedInput>
118-
</Compile>
119-
<EmbeddedResource Include="My Project\Resources.resx">
120-
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
121-
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
122-
<CustomToolNamespace>My.Resources</CustomToolNamespace>
123-
</EmbeddedResource>
124-
<None Include="My Project\Settings.settings">
125-
<Generator>SettingsSingleFileGenerator</Generator>
126-
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
127-
</None>
128-
</ItemGroup>
129-
<ItemGroup>
130-
<None Include="App.config" />
131-
</ItemGroup>
132-
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
133-
</Project>
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{11EF734D-67A0-4426-A264-6EA4627884AD}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace></RootNamespace>
10+
<AssemblyName>SyntaxHighlightSimple</AssemblyName>
11+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
14+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15+
<OptionExplicit>On</OptionExplicit>
16+
<OptionCompare>Binary</OptionCompare>
17+
<OptionStrict>Off</OptionStrict>
18+
<OptionInfer>On</OptionInfer>
19+
</PropertyGroup>
20+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21+
<PlatformTarget>AnyCPU</PlatformTarget>
22+
<DebugSymbols>true</DebugSymbols>
23+
<DebugType>full</DebugType>
24+
<Optimize>false</Optimize>
25+
<OutputPath>bin\Debug\</OutputPath>
26+
<DefineDebug>true</DefineDebug>
27+
<DefineTrace>true</DefineTrace>
28+
<ErrorReport>prompt</ErrorReport>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31+
<PlatformTarget>AnyCPU</PlatformTarget>
32+
<DebugType>pdbonly</DebugType>
33+
<Optimize>true</Optimize>
34+
<OutputPath>bin\Release\</OutputPath>
35+
<DefineDebug>false</DefineDebug>
36+
<DefineTrace>true</DefineTrace>
37+
<ErrorReport>prompt</ErrorReport>
38+
</PropertyGroup>
39+
<ItemGroup>
40+
<Import Include="Microsoft.VisualBasic" />
41+
<Import Include="System.Collections.Generic" />
42+
<Import Include="System.Collections" />
43+
<Import Include="System.Diagnostics" />
44+
<Import Include="System.Linq" />
45+
<Import Include="System.Xml.Linq" />
46+
<Import Include="System.Data" />
47+
<Import Include="System.Drawing" />
48+
<Import Include="System.Windows.Forms" />
49+
<Import Include="System.Windows.Controls" />
50+
<Import Include="System.Windows.Data" />
51+
<Import Include="System.Windows.Shapes" />
52+
<Import Include="System.Windows.Documents" />
53+
<Import Include="System.Windows.Input" />
54+
<Import Include="System.Windows.Media.Imaging" />
55+
<Import Include="System.Windows.Media" />
56+
<Import Include="System.Windows.Navigation" />
57+
<Import Include="System.Windows" />
58+
<Import Include="System" />
59+
</ItemGroup>
60+
<ItemGroup>
61+
<Reference Include="DevExpress.CodeParser.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
62+
<Reference Include="DevExpress.Office.v18.2.Core, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
63+
<Reference Include="DevExpress.RichEdit.v18.2.Core, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
64+
<Reference Include="DevExpress.Data.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
65+
<Reference Include="DevExpress.Utils.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
66+
<Reference Include="DevExpress.Mvvm.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
67+
<Reference Include="DevExpress.Xpf.Core.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
68+
<Reference Include="DevExpress.Xpf.RichEdit.v18.2, Version=18.2.17.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL" />
69+
<Reference Include="System" />
70+
<Reference Include="System.Data" />
71+
<Reference Include="System.Drawing" />
72+
<Reference Include="System.Windows.Forms" />
73+
<Reference Include="System.Xml" />
74+
<Reference Include="Microsoft.CSharp" />
75+
<Reference Include="System.Core" />
76+
<Reference Include="System.Xml.Linq" />
77+
<Reference Include="System.Data.DataSetExtensions" />
78+
<Reference Include="System.Net.Http" />
79+
<Reference Include="System.Xaml">
80+
<RequiredTargetFramework>4.0</RequiredTargetFramework>
81+
</Reference>
82+
<Reference Include="WindowsBase" />
83+
<Reference Include="PresentationCore" />
84+
<Reference Include="PresentationFramework" />
85+
</ItemGroup>
86+
<ItemGroup>
87+
<ApplicationDefinition Include="Application.xaml">
88+
<Generator>MSBuild:Compile</Generator>
89+
<SubType>Designer</SubType>
90+
</ApplicationDefinition>
91+
<Page Include="MainWindow.xaml">
92+
<Generator>MSBuild:Compile</Generator>
93+
<SubType>Designer</SubType>
94+
</Page>
95+
<Compile Include="Application.xaml.vb">
96+
<DependentUpon>Application.xaml</DependentUpon>
97+
<SubType>Code</SubType>
98+
</Compile>
99+
<Compile Include="MainWindow.xaml.vb">
100+
<DependentUpon>MainWindow.xaml</DependentUpon>
101+
<SubType>Code</SubType>
102+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
103+
</Compile>
104+
</ItemGroup>
105+
<ItemGroup>
106+
<Compile Include="My Project\AssemblyInfo.vb">
107+
<SubType>Code</SubType>
108+
</Compile>
109+
<Compile Include="My Project\Resources.Designer.vb">
110+
<AutoGen>True</AutoGen>
111+
<DesignTime>True</DesignTime>
112+
<DependentUpon>Resources.resx</DependentUpon>
113+
</Compile>
114+
<Compile Include="My Project\Settings.Designer.vb">
115+
<AutoGen>True</AutoGen>
116+
<DependentUpon>Settings.settings</DependentUpon>
117+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
118+
</Compile>
119+
<EmbeddedResource Include="My Project\Resources.resx">
120+
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
121+
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
122+
<CustomToolNamespace>My.Resources</CustomToolNamespace>
123+
</EmbeddedResource>
124+
<None Include="My Project\Settings.settings">
125+
<Generator>SettingsSingleFileGenerator</Generator>
126+
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
127+
</None>
128+
</ItemGroup>
129+
<ItemGroup>
130+
<None Include="App.config" />
131+
</ItemGroup>
132+
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
133+
</Project>

0 commit comments

Comments
 (0)