Add project files.
This commit is contained in:
25
Dokumentáció Készítő 3.sln
Normal file
25
Dokumentáció Készítő 3.sln
Normal file
@@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.29102.190
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Dokumentáció Készítő 3", "Dokumentáció Készítő 3\Dokumentáció Készítő 3.vbproj", "{0D82F19D-DF81-45F3-9BF3-6CE2E79267E6}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{0D82F19D-DF81-45F3-9BF3-6CE2E79267E6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{0D82F19D-DF81-45F3-9BF3-6CE2E79267E6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{0D82F19D-DF81-45F3-9BF3-6CE2E79267E6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0D82F19D-DF81-45F3-9BF3-6CE2E79267E6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {3A13563B-6A8A-4203-8467-975D7AE62D66}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
6
Dokumentáció Készítő 3/App.config
Normal file
6
Dokumentáció Készítő 3/App.config
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<configuration>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||
</startup>
|
||||
</configuration>
|
||||
49
Dokumentáció Készítő 3/Application.xaml
Normal file
49
Dokumentáció Készítő 3/Application.xaml
Normal file
@@ -0,0 +1,49 @@
|
||||
<Application x:Class="Example.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||
StartupUri="MainWindow.xaml">
|
||||
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<materialDesign:BundledTheme BaseTheme="Light" PrimaryColor="DeepPurple" SecondaryColor="Lime" />
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml" />
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />
|
||||
|
||||
<!-- material design styles -->
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/Generic.xaml" />
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignExtensions;component/Themes/Generic.xaml" />
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignExtensions;component/Themes/MaterialDesignLightTheme.xaml" />
|
||||
<!--<ResourceDictionary Source="pack://application:,,,/MaterialDesignExtensions;component/Themes/MaterialDesignDarkTheme.xaml" />-->
|
||||
|
||||
<!-- primary colors -->
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/MaterialDesignColor.Blue.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
<SolidColorBrush x:Key="PrimaryHueLightBrush" Color="{StaticResource Primary100}" />
|
||||
<SolidColorBrush x:Key="PrimaryHueLightForegroundBrush" Color="{StaticResource Primary100Foreground}" />
|
||||
<SolidColorBrush x:Key="PrimaryHueMidBrush" Color="{StaticResource Primary500}" />
|
||||
<SolidColorBrush x:Key="PrimaryHueMidForegroundBrush" Color="{StaticResource Primary500Foreground}" />
|
||||
<SolidColorBrush x:Key="PrimaryHueDarkBrush" Color="{StaticResource Primary600}" />
|
||||
<SolidColorBrush x:Key="PrimaryHueDarkForegroundBrush" Color="{StaticResource Primary600Foreground}" />
|
||||
</ResourceDictionary>
|
||||
|
||||
<!-- accent color -->
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/MaterialDesignColor.Lime.xaml" />
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
<SolidColorBrush x:Key="SecondaryAccentBrush" Color="{StaticResource Accent400}" />
|
||||
<SolidColorBrush x:Key="SecondaryAccentForegroundBrush" Color="{StaticResource Accent400Foreground}" />
|
||||
</ResourceDictionary>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
|
||||
|
||||
</Application.Resources>
|
||||
|
||||
</Application>
|
||||
6
Dokumentáció Készítő 3/Application.xaml.vb
Normal file
6
Dokumentáció Készítő 3/Application.xaml.vb
Normal file
@@ -0,0 +1,6 @@
|
||||
Class Application
|
||||
|
||||
' Application-level events, such as Startup, Exit, and DispatcherUnhandledException
|
||||
' can be handled in this file.
|
||||
|
||||
End Class
|
||||
247
Dokumentáció Készítő 3/Dokumentáció Készítő 3.vbproj
Normal file
247
Dokumentáció Készítő 3/Dokumentáció Készítő 3.vbproj
Normal file
@@ -0,0 +1,247 @@
|
||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{0D82F19D-DF81-45F3-9BF3-6CE2E79267E6}</ProjectGuid>
|
||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<RootNamespace>Dokumentáció_Készítő_3</RootNamespace>
|
||||
<AssemblyName>Dokumentáció Készítő 3</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||
<MyType>Custom</MyType>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<Deterministic>true</Deterministic>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<IncrementalBuild>true</IncrementalBuild>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DocumentationFile>Dokumentáció Készítő 3.xml</DocumentationFile>
|
||||
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<IncrementalBuild>false</IncrementalBuild>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DocumentationFile>Dokumentáció Készítő 3.xml</DocumentationFile>
|
||||
<NoWarn>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036,42314</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="BouncyCastle.Crypto, Version=1.8.5.0, Culture=neutral, PublicKeyToken=0e99375e54769942, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Portable.BouncyCastle.1.8.5\lib\net40\BouncyCastle.Crypto.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Common.Logging, Version=3.4.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Common.Logging.3.4.1\lib\net40\Common.Logging.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Common.Logging.Core, Version=3.4.1.0, Culture=neutral, PublicKeyToken=af08829b84f0328e, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Common.Logging.Core.3.4.1\lib\net40\Common.Logging.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="itextsharp, Version=5.5.13.1, Culture=neutral, PublicKeyToken=8354ae6d2174ddca, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\iTextSharp.5.5.13.1\lib\itextsharp.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="MaterialDesignColors, Version=1.2.4.1361, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MaterialDesignColors.1.2.4\lib\net45\MaterialDesignColors.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="MaterialDesignExtensions, Version=3.1.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MaterialDesignExtensions.3.1.0\lib\net45\MaterialDesignExtensions.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="MaterialDesignThemes.Wpf, Version=3.1.1.1361, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\MaterialDesignThemes.3.1.1\lib\net45\MaterialDesignThemes.Wpf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Ookii.Dialogs.Wpf, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0c15020868fd6249, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Ookii.Dialogs.1.0\lib\net35\Ookii.Dialogs.Wpf.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Web" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Xaml">
|
||||
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
||||
</Reference>
|
||||
<Reference Include="WindowsBase" />
|
||||
<Reference Include="PresentationCore" />
|
||||
<Reference Include="PresentationFramework" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ApplicationDefinition Include="Application.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Compile Include="Form2.xaml.vb">
|
||||
<DependentUpon>Form2.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="form3.xaml.vb">
|
||||
<DependentUpon>form3.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Window1.xaml.vb">
|
||||
<DependentUpon>Window1.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Page Include="Form2.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Include="MainWindow.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Page>
|
||||
<Compile Include="Application.xaml.vb">
|
||||
<DependentUpon>Application.xaml</DependentUpon>
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="MainWindow.xaml.vb">
|
||||
<DependentUpon>MainWindow.xaml</DependentUpon>
|
||||
<SubType>Code</SubType>
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Compile>
|
||||
<Page Include="form3.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
<Page Include="Window1.xaml">
|
||||
<SubType>Designer</SubType>
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Windows" />
|
||||
<Import Include="System.Windows.Controls" />
|
||||
<Import Include="System.Windows.Data" />
|
||||
<Import Include="System.Windows.Documents" />
|
||||
<Import Include="System.Windows.Input" />
|
||||
<Import Include="System.Windows.Shapes" />
|
||||
<Import Include="System.Windows.Media" />
|
||||
<Import Include="System.Windows.Media.Imaging" />
|
||||
<Import Include="System.Windows.Navigation" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="HandleWindow.vb" />
|
||||
<Compile Include="Module1.vb" />
|
||||
<Compile Include="My Project\AssemblyInfo.vb">
|
||||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
<Compile Include="My Project\MyExtensions\MyWpfExtension.vb">
|
||||
<VBMyExtensionTemplateID>Microsoft.VisualBasic.WPF.MyExtension</VBMyExtensionTemplateID>
|
||||
<VBMyExtensionTemplateVersion>1.0.0.0</VBMyExtensionTemplateVersion>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Resources.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Settings.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
<EmbeddedResource Include="My Project\Resources.resx">
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
</EmbeddedResource>
|
||||
<None Include="My Project\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<COMReference Include="Microsoft.Office.Core">
|
||||
<Guid>{2DF8D04C-5BFA-101B-BDE5-00AA0044DE52}</Guid>
|
||||
<VersionMajor>2</VersionMajor>
|
||||
<VersionMinor>8</VersionMinor>
|
||||
<Lcid>0</Lcid>
|
||||
<WrapperTool>primary</WrapperTool>
|
||||
<Isolated>False</Isolated>
|
||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||
</COMReference>
|
||||
<COMReference Include="Microsoft.Office.Interop.Excel">
|
||||
<Guid>{00020813-0000-0000-C000-000000000046}</Guid>
|
||||
<VersionMajor>1</VersionMajor>
|
||||
<VersionMinor>9</VersionMinor>
|
||||
<Lcid>0</Lcid>
|
||||
<WrapperTool>primary</WrapperTool>
|
||||
<Isolated>False</Isolated>
|
||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||
</COMReference>
|
||||
<COMReference Include="pfcls">
|
||||
<Guid>{176453F2-6934-4304-8C9D-126D98C1700E}</Guid>
|
||||
<VersionMajor>1</VersionMajor>
|
||||
<VersionMinor>0</VersionMinor>
|
||||
<Lcid>0</Lcid>
|
||||
<WrapperTool>tlbimp</WrapperTool>
|
||||
<Isolated>False</Isolated>
|
||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||
</COMReference>
|
||||
<COMReference Include="VBIDE">
|
||||
<Guid>{0002E157-0000-0000-C000-000000000046}</Guid>
|
||||
<VersionMajor>5</VersionMajor>
|
||||
<VersionMinor>3</VersionMinor>
|
||||
<Lcid>0</Lcid>
|
||||
<WrapperTool>primary</WrapperTool>
|
||||
<Isolated>False</Isolated>
|
||||
<EmbedInteropTypes>True</EmbedInteropTypes>
|
||||
</COMReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<WCFMetadata Include="Connected Services\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Resource Include="logo.png">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Resource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Resource Include="baseline_clear_black_18dp.png">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</Resource>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
<Import Project="..\packages\MaterialDesignThemes.3.1.1\build\MaterialDesignThemes.targets" Condition="Exists('..\packages\MaterialDesignThemes.3.1.1\build\MaterialDesignThemes.targets')" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\MaterialDesignThemes.3.1.1\build\MaterialDesignThemes.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MaterialDesignThemes.3.1.1\build\MaterialDesignThemes.targets'))" />
|
||||
</Target>
|
||||
</Project>
|
||||
25
Dokumentáció Készítő 3/Form2.xaml
Normal file
25
Dokumentáció Készítő 3/Form2.xaml
Normal file
@@ -0,0 +1,25 @@
|
||||
<Window x:Class="Form2"
|
||||
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
||||
TextElement.FontWeight="Regular"
|
||||
TextElement.FontSize="13"
|
||||
TextOptions.TextFormattingMode="Ideal"
|
||||
TextOptions.TextRenderingMode="Auto"
|
||||
Background="{DynamicResource MaterialDesignPaper}"
|
||||
FontFamily="{DynamicResource MaterialDesignFont}"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:Dokumentáció_Készítő_3"
|
||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||
xmlns:mde="clr-namespace:MaterialDesignExtensions.Controls;assembly=MaterialDesignExtensions"
|
||||
mc:Ignorable="d"
|
||||
Title="Elkészült" Height="125.994" Width="370.188" FontSize="13" WindowStyle="None" WindowStartupLocation="CenterScreen">
|
||||
<Grid Height="116" VerticalAlignment="Top" HorizontalAlignment="Left" Width="360">
|
||||
<Button x:Name="MaterialRaisedButton1" Content="Ok" HorizontalAlignment="Left" Margin="10,76,0,0" VerticalAlignment="Top" Width="156" RenderTransformOrigin="0.785,1.101"/>
|
||||
<Label x:Name="Label1" Content="Szeretnéd a pramétert módosítani?" Margin="0,10,10,0" FontSize="16" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Height="33" VerticalAlignment="Top"/>
|
||||
<Button x:Name="MaterialRaisedButton2" Content="Mégsem" HorizontalAlignment="Left" Margin="194,76,0,0" VerticalAlignment="Top" Width="156" RenderTransformOrigin="0.785,1.101"/>
|
||||
<TextBox x:Name="TextBox1" HorizontalAlignment="Left" Height="23" Margin="10,48,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="340" TextChanged="TextBox_TextChanged"/>
|
||||
|
||||
</Grid>
|
||||
</Window>
|
||||
25
Dokumentáció Készítő 3/Form2.xaml.vb
Normal file
25
Dokumentáció Készítő 3/Form2.xaml.vb
Normal file
@@ -0,0 +1,25 @@
|
||||
Public Class Form2
|
||||
Public Shared ans As String
|
||||
Public Shared NewParamValue As String
|
||||
|
||||
|
||||
Private Sub Form2_Loaded(ByVal sender As Object, ByVal e As EventArgs) Handles MyClass.Loaded
|
||||
Label1.Content = "A " & MainWindow.ParamNameD & " paraméternek alapérték van beállítáva, szeretnéd módosítanin?"
|
||||
|
||||
End Sub
|
||||
|
||||
|
||||
|
||||
Private Sub MaterialRaisedButton1_Click(sender As Object, e As RoutedEventArgs) Handles MaterialRaisedButton1.Click
|
||||
ans = "ok"
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton2_Click(sender As Object, e As RoutedEventArgs) Handles MaterialRaisedButton2.Click
|
||||
ans = "notok"
|
||||
End Sub
|
||||
|
||||
Private Sub TextBox_TextChanged(sender As Object, e As TextChangedEventArgs)
|
||||
NewParamValue = TextBox1.Text
|
||||
End Sub
|
||||
|
||||
End Class
|
||||
73
Dokumentáció Készítő 3/HandleWindow.vb
Normal file
73
Dokumentáció Készítő 3/HandleWindow.vb
Normal file
@@ -0,0 +1,73 @@
|
||||
Imports System.Runtime.InteropServices
|
||||
Module HandleWindow
|
||||
|
||||
Dim name3 As String
|
||||
Dim name4 As String
|
||||
Dim n As Integer = 0
|
||||
Dim CreoWindowNameM As String
|
||||
Public Declare Function EnumWindows Lib "User32.dll" (ByVal WNDENUMPROC As EnumWindowDelegate, ByVal lparam As IntPtr) As Boolean
|
||||
Public Declare Auto Function GetWindowText Lib "User32.dll" (ByVal Hwnd As IntPtr, ByVal Txt As Byte(), ByVal Lng As Integer) As Integer
|
||||
Public Declare Function IsWindowVisible Lib "User32.dll" (ByVal hwnd As IntPtr) As Boolean
|
||||
Public Declare Function GetWindowTextLengthA Lib "User32.dll" (ByVal hwnd As IntPtr) As Integer
|
||||
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As IntPtr
|
||||
Public Declare Function SetWindowPos Lib "user32" (ByVal hwnd As IntPtr, ByVal hWndInsertAfter As IntPtr, ByVal X As Integer, ByVal Y As Integer, ByVal cx As Integer, ByVal cy As Integer, ByVal wFlags As Integer) As Integer
|
||||
Public Const SWP_SHOWWINDOW = &H40
|
||||
Public Const SWP_NOMOVE = &H2
|
||||
Public Const SWP_NOSIZE = &H1
|
||||
Delegate Function EnumWindowDelegate(ByVal hWnd As IntPtr, ByVal Lparam As IntPtr) As Boolean
|
||||
Public Callback As EnumWindowDelegate = New EnumWindowDelegate(AddressOf EnumWindowProc)
|
||||
|
||||
Public Function FocusWindowM(name1 As String, name2 As String)
|
||||
name3 = name1
|
||||
name4 = name2
|
||||
|
||||
Dim Result As String = HandleWindow.EnumWindows(Callback, IntPtr.Zero)
|
||||
n = n + 1
|
||||
FocusWindow()
|
||||
Return True
|
||||
|
||||
End Function
|
||||
Public Function EnumWindowProc(ByVal hWnd As IntPtr, ByVal Lparam As IntPtr) As Boolean
|
||||
|
||||
If IsWindowVisible(hWnd) Then
|
||||
Dim TheLength As Integer = GetWindowTextLengthA(hWnd)
|
||||
Dim TheReturn(TheLength * 2) As Byte '2x the size of the Max length
|
||||
GetWindowText(hWnd, TheReturn, TheLength + 1)
|
||||
Dim TheText As String = ""
|
||||
For x = 0 To (TheLength - 1) * 2
|
||||
If TheReturn(x) <> 0 Then
|
||||
TheText &= Chr(TheReturn(x))
|
||||
End If
|
||||
Next
|
||||
|
||||
If TheText.Contains(name3) And TheText.Contains(name4) Then
|
||||
|
||||
CreoWindowNameM = TheText
|
||||
Else
|
||||
|
||||
End If
|
||||
|
||||
End If
|
||||
|
||||
Return True
|
||||
|
||||
End Function
|
||||
Public Sub FocusWindow()
|
||||
Dim dbHwnd As IntPtr = FindWindow(Nothing, CreoWindowNameM)
|
||||
|
||||
Debug.Print(dbHwnd)
|
||||
If dbHwnd = 0 Then
|
||||
' MsgBox("Can't find creo window")
|
||||
Else
|
||||
' MsgBox("Creo window found")
|
||||
SetWindowPos(dbHwnd, 0, 0, 0, 0, 0, SWP_SHOWWINDOW Or SWP_NOMOVE Or SWP_NOSIZE)
|
||||
|
||||
End If
|
||||
End Sub
|
||||
|
||||
|
||||
|
||||
|
||||
End Module
|
||||
|
||||
|
||||
BIN
Dokumentáció Készítő 3/Images/baseline_clear_black_18dp.png
Normal file
BIN
Dokumentáció Készítő 3/Images/baseline_clear_black_18dp.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 209 B |
BIN
Dokumentáció Készítő 3/Images/logo.png
Normal file
BIN
Dokumentáció Készítő 3/Images/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
138
Dokumentáció Készítő 3/MainWindow.xaml
Normal file
138
Dokumentáció Készítő 3/MainWindow.xaml
Normal file
@@ -0,0 +1,138 @@
|
||||
<Window
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" x:Name="MainWindow"
|
||||
x:Class="MainWindow"
|
||||
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
||||
TextElement.FontWeight="Regular"
|
||||
TextElement.FontSize="13"
|
||||
TextOptions.TextFormattingMode="Ideal"
|
||||
TextOptions.TextRenderingMode="Auto"
|
||||
Background="{DynamicResource MaterialDesignPaper}"
|
||||
FontFamily="{DynamicResource MaterialDesignFont}"
|
||||
mc:Ignorable="d"
|
||||
Title="Dokumentáció készítő" Height="370" Width="500" FontSize="13" WindowStyle="None" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" SizeToContent="WidthAndHeight" MinHeight="370" MaxHeight="370">
|
||||
<Grid x:Name="MainGrid" HorizontalAlignment="Left" Height="374" VerticalAlignment="Top" Width="500">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="14*"/>
|
||||
<RowDefinition Height="173*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Label Content="Dokumentáció készítő" Height="22" VerticalAlignment="Top" FontSize="14" MouseDown="Label_MouseDown" HorizontalAlignment="Left" Width="462"/>
|
||||
<TabControl Style="{StaticResource MaterialDesignTabControl}" Margin="0,27,0,2" HorizontalAlignment="Left" Width="490" Grid.RowSpan="2">
|
||||
<TabControl.Background>
|
||||
<ImageBrush/>
|
||||
</TabControl.Background>
|
||||
<TabItem Header="DOKSI készítő" FontSize="13" Width="140" RenderTransformOrigin="0.971,0.562" >
|
||||
<Grid HorizontalAlignment="Left" Width="500" Margin="0,0,-33,-6" Height="288" VerticalAlignment="Top">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<ProgressBar x:Name="Progressbar" HorizontalAlignment="Left" Height="32" VerticalAlignment="Top" Width="319" Margin="10,244,0,0" />
|
||||
<Button x:Name="CreateDocument" Content="Dokumentáció készítése" HorizontalAlignment="Left" Margin="334,244,0,0" VerticalAlignment="Top" Width="156" RenderTransformOrigin="0.785,1.101"/>
|
||||
<ListBox x:Name="ListBox1" Height="159" Margin="10,10,10,0" VerticalAlignment="Top" Background="{x:Null}" BorderThickness="2" BorderBrush="#FFECE0E0"/>
|
||||
<CheckBox x:Name="PDFCheckBox" HorizontalAlignment="Left" Margin="11,193,0,0" VerticalAlignment="Top" Content="PDF"/>
|
||||
<CheckBox x:Name="DXFCheckBox" HorizontalAlignment="Left" Margin="61,193,0,0" VerticalAlignment="Top" Content="DXF" RenderTransformOrigin="0.743,0.642"/>
|
||||
<CheckBox x:Name="TIFFCheckbox" HorizontalAlignment="Left" Margin="11,108,0,0" VerticalAlignment="Top" Content="TIFF" Visibility="Hidden"/>
|
||||
<CheckBox x:Name="XLSCheckbox" HorizontalAlignment="Left" Margin="111,193,0,0" VerticalAlignment="Top" Content="XLS"/>
|
||||
|
||||
<StackPanel Margin="0,10,10,139" HorizontalAlignment="Right" Width="156" Visibility="Hidden">
|
||||
<Label Content="Gyártási dokumentáció" HorizontalAlignment="Left" VerticalAlignment="Top"/>
|
||||
<RadioButton x:Name="NamingSyntaxStefani" Content="Stefani"/>
|
||||
<Label Content="Leadási dokumentáció" HorizontalAlignment="Left" VerticalAlignment="Top" RenderTransformOrigin="0.469,-0.417"/>
|
||||
<RadioButton x:Name="NamingSyntaxAudi" Content="Audi"/>
|
||||
<RadioButton x:Name="NamingSyntaxHanon" Content="Hanon"/>
|
||||
</StackPanel>
|
||||
<Label Content="Dokumentáció típusa" HorizontalAlignment="Left" Margin="24,211,0,0" VerticalAlignment="Top" FontSize="13" RenderTransformOrigin="0.533,6.49" Visibility="Hidden"/>
|
||||
<CheckBox x:Name="PDFOsszeCheckBox" HorizontalAlignment="Left" Margin="369,267,0,0" VerticalAlignment="Top" Content="PDF összefűzése" Visibility="Hidden"/>
|
||||
<CheckBox x:Name="NeedPdfStroke" HorizontalAlignment="Left" Margin="369,244,0,0" VerticalAlignment="Top" Content="Stroke All Fonts" RenderTransformOrigin="0.703,6.833" Visibility="Hidden"/>
|
||||
<CheckBox x:Name="AutomaticFolderSelect" HorizontalAlignment="Left" Margin="11,221,0,0" VerticalAlignment="Top" Content="Automatikus mappa választás"/>
|
||||
<CheckBox x:Name="EllenorzesCheckBox" HorizontalAlignment="Left" Margin="369,198,0,0" VerticalAlignment="Top" Content="Ellenőrzés" Visibility="Hidden" >
|
||||
<CheckBox.RenderTransform>
|
||||
<TransformGroup/>
|
||||
</CheckBox.RenderTransform>
|
||||
</CheckBox>
|
||||
<CheckBox x:Name="PrintCheckBox" HorizontalAlignment="Left" Margin="11,131,0,0" VerticalAlignment="Top" Content="Nyomtatás" Visibility="Hidden"/>
|
||||
<StackPanel Margin="0,201,10,0" HorizontalAlignment="Right" Width="181" Height="38" VerticalAlignment="Top">
|
||||
<RadioButton x:Name="MaterialRadioButton3" Content="Aktív rajz használata" IsChecked="True"/>
|
||||
<RadioButton x:Name="KulonAloRajzok" Content="Különálló rajzok használata"/>
|
||||
</StackPanel>
|
||||
<CheckBox x:Name="SheetCheckBox" HorizontalAlignment="Left" Margin="369,221,0,0" VerticalAlignment="Top" Content="Lapszam Beírása" Visibility="Hidden"/>
|
||||
|
||||
|
||||
|
||||
<Button x:Name="Files_Browse" Content="Böngészés" HorizontalAlignment="Left" Margin="399,174,0,0" VerticalAlignment="Top" Width="81" RenderTransformOrigin="0.785,1.101" Height="22" FontSize="8"/>
|
||||
<Button x:Name="CreateDocument_XLS" Content="Excel nyomtatása" HorizontalAlignment="Left" Margin="191,224,0,0" VerticalAlignment="Top" Width="147" RenderTransformOrigin="0.785,1.101" Visibility="Hidden"/>
|
||||
<CheckBox x:Name="PrintExcelCheckBox" HorizontalAlignment="Left" Margin="120,117,0,0" VerticalAlignment="Top" Content="Excel Nyomtatás" Visibility="Hidden"/>
|
||||
<Grid HorizontalAlignment="Left" Height="32" Margin="15,246,0,0" VerticalAlignment="Top" Width="319">
|
||||
<Label x:Name="ProgressText" Content="" HorizontalAlignment="Center" VerticalAlignment="Center" Height="22" Margin="150,1,161,9" />
|
||||
|
||||
</Grid>
|
||||
<CheckBox x:Name="STEPCheckbox" HorizontalAlignment="Left" Margin="160,193,0,0" VerticalAlignment="Top" Content="STEP"/>
|
||||
|
||||
</Grid>
|
||||
</TabItem>
|
||||
<TabItem Header="Egyéb" Visibility="Hidden" >
|
||||
<Grid>
|
||||
<TabControl HorizontalAlignment="Right" Width="500" Height="297" VerticalAlignment="Top" Background="{x:Null}">
|
||||
|
||||
<TabItem Header="Drw osztó" >
|
||||
<TabItem.RenderTransform>
|
||||
<TransformGroup>
|
||||
<ScaleTransform/>
|
||||
<SkewTransform AngleY="-0.415"/>
|
||||
<RotateTransform/>
|
||||
<TranslateTransform Y="0.326"/>
|
||||
</TransformGroup>
|
||||
</TabItem.RenderTransform>
|
||||
<Grid Margin="0,0,0,-1">
|
||||
<Grid.RowDefinitions>
|
||||
<RowDefinition Height="33*"/>
|
||||
<RowDefinition Height="8*"/>
|
||||
</Grid.RowDefinitions>
|
||||
<Button x:Name="drwSplitButton" Content="Split" HorizontalAlignment="Left" Margin="10,54,0,0" VerticalAlignment="Top" Width="91" RenderTransformOrigin="0.785,1.101"/>
|
||||
<CheckBox x:Name="AktualisRajzRadioButton" HorizontalAlignment="Left" Margin="10,91,0,0" VerticalAlignment="Top" Content="Aktuális rajz mentése" Width="156"/>
|
||||
<Button x:Name="test" Content="Split" HorizontalAlignment="Left" Margin="393,54,0,0" VerticalAlignment="Top" Width="91" RenderTransformOrigin="0.785,1.101"/>
|
||||
<CheckBox x:Name="RajzCsereRadioButton" HorizontalAlignment="Left" Margin="328,91,0,0" VerticalAlignment="Top" Content="Rajz csere" Width="156"/>
|
||||
</Grid>
|
||||
</TabItem>
|
||||
<TabItem Header="Purge">
|
||||
<Grid>
|
||||
<CheckBox x:Name="PRTCheckBox" HorizontalAlignment="Left" Margin="10,104,0,0" VerticalAlignment="Top" Content="PRT" RenderTransformOrigin="-0.023,5.167"/>
|
||||
<CheckBox x:Name="ASMCheckBox" HorizontalAlignment="Left" Margin="114,104,0,0" VerticalAlignment="Top" Content="ASM"/>
|
||||
<CheckBox x:Name="DRWCheckBox" HorizontalAlignment="Left" Margin="58,104,0,0" VerticalAlignment="Top" Content="DRW"/>
|
||||
<Button x:Name="FixNamesButton" Content="Fix names" HorizontalAlignment="Left" Margin="124,67,0,0" VerticalAlignment="Top" Width="94" RenderTransformOrigin="0.785,1.101"/>
|
||||
<Button x:Name="PurgeBongeszesButton" Content="Böngészés" HorizontalAlignment="Left" Margin="10,67,0,0" VerticalAlignment="Top" Width="109" RenderTransformOrigin="0.785,1.101"/>
|
||||
<CheckBox x:Name="subdirctories" HorizontalAlignment="Left" Margin="179,104,0,0" VerticalAlignment="Top" Content="ASM"/>
|
||||
</Grid>
|
||||
</TabItem>
|
||||
<TabItem Header="Translator">
|
||||
<Grid Height="287" VerticalAlignment="Top" Margin="0,0,2,0">
|
||||
<Button x:Name="Button1" Content="Button" HorizontalAlignment="Left" Margin="10,137,0,0" VerticalAlignment="Top" Width="75"/>
|
||||
<CheckBox x:Name="PromtTranslateCBOX" Content="CheckBox" HorizontalAlignment="Left" Margin="10,174,0,0" VerticalAlignment="Top"/>
|
||||
</Grid>
|
||||
</TabItem>
|
||||
</TabControl>
|
||||
</Grid>
|
||||
</TabItem>
|
||||
<TabItem Header="Nényjegy" Width="124" ScrollViewer.HorizontalScrollBarVisibility="Hidden" Visibility="Hidden" >
|
||||
<Grid/>
|
||||
</TabItem>
|
||||
<Image Height="100" Width="100"/>
|
||||
</TabControl>
|
||||
<Button Content="Button" Margin="479,0,0,0" VerticalAlignment="Top" Height="22" Click="Button_Click" BorderBrush="{x:Null}">
|
||||
<Button.Foreground>
|
||||
<ImageBrush/>
|
||||
</Button.Foreground>
|
||||
<Button.Background>
|
||||
<ImageBrush ImageSource="baseline_clear_black_18dp.png"/>
|
||||
</Button.Background>
|
||||
|
||||
</Button>
|
||||
|
||||
</Grid>
|
||||
|
||||
|
||||
|
||||
</Window>
|
||||
2847
Dokumentáció Készítő 3/MainWindow.xaml.vb
Normal file
2847
Dokumentáció Készítő 3/MainWindow.xaml.vb
Normal file
File diff suppressed because it is too large
Load Diff
144
Dokumentáció Készítő 3/Module1.vb
Normal file
144
Dokumentáció Készítő 3/Module1.vb
Normal file
@@ -0,0 +1,144 @@
|
||||
Imports System.IO
|
||||
|
||||
Module Purge
|
||||
|
||||
Public Sub Purge(PathToPurge As String, FilesToKeepNum As Integer, FileType As String, subdir As Boolean, copyonly As Boolean, TempTxtFile As String)
|
||||
MsgBox(".........")
|
||||
Console.WriteLine("Folder: " + PathToPurge)
|
||||
My.Computer.FileSystem.WriteAllText(TempTxtFile, Environment.NewLine + ".........", True)
|
||||
|
||||
My.Computer.FileSystem.WriteAllText(TempTxtFile, Environment.NewLine + "Folder: " + PathToPurge, True)
|
||||
|
||||
|
||||
Dim files() As String
|
||||
Dim pathss As String = PathToPurge
|
||||
' Dim FileType As String = ".prt"
|
||||
|
||||
|
||||
files = Directory.GetFiles(pathss, "*" & FileType & "*", SearchOption.TopDirectoryOnly)
|
||||
Dim NumberOfFilesDeleted As String = 0
|
||||
Dim FirstCharacter As Integer
|
||||
Dim FirstCharacter_2 As Integer
|
||||
Dim SameFiles As New List(Of String)
|
||||
Dim SameFileExtentensions As New List(Of Integer)
|
||||
Dim FileExtention As New List(Of String)
|
||||
Dim FilesToKeep As New List(Of String)
|
||||
Dim FilesToRename As New List(Of String)
|
||||
Dim FilesToDelete As New List(Of String)
|
||||
|
||||
'Fileok megszámolása
|
||||
Dim FileCount As Integer = files.Count
|
||||
|
||||
|
||||
|
||||
For i = 0 To FileCount - 1
|
||||
|
||||
|
||||
' Console.WriteLine(FileType)
|
||||
FirstCharacter = files(i).ToLower.IndexOf(FileType)
|
||||
' FirstCharacter_2 = files(i - 1).ToLower.IndexOf(FileType)
|
||||
If i <> 0 Then
|
||||
FirstCharacter_2 = files(i - 1).ToLower.IndexOf(FileType)
|
||||
' Console.WriteLine(files(i))
|
||||
' Console.WriteLine(FirstCharacter)
|
||||
' Console.WriteLine(Strings.Left(files(i), FirstCharacter))
|
||||
|
||||
' Console.WriteLine(Strings.Left(files(i - 1), FirstCharacter))
|
||||
' Console.WriteLine(i)
|
||||
|
||||
|
||||
If Strings.Left(files(i), FirstCharacter) <> Strings.Left(files(i - 1), FirstCharacter_2) Then
|
||||
' Console.WriteLine(files(i))
|
||||
SameFiles.Add(files(i))
|
||||
|
||||
Else
|
||||
'IDE AZT HA
|
||||
|
||||
|
||||
End If
|
||||
|
||||
Else
|
||||
SameFiles.Add(files(i))
|
||||
End If
|
||||
|
||||
Next
|
||||
|
||||
' Console.WriteLine(SameFiles.Count)
|
||||
Dim EachSamefiles() As String
|
||||
For Each SameFile As String In SameFiles
|
||||
|
||||
Dim samefilesname As String = Path.GetFileNameWithoutExtension(SameFile)
|
||||
Console.WriteLine(samefilesname)
|
||||
EachSamefiles = Directory.GetFiles(pathss, samefilesname & "*.*", SearchOption.TopDirectoryOnly)
|
||||
FirstCharacter = SameFile.LastIndexOf(FileType)
|
||||
' If Left(SameFile, 108) = Left("Z:\Projekt-Rajzok\SHM-8001...SHM-8100\SHM-8020 - Umbau für G25 Interim\02 - Modellek\shm-9999-010-222-222-01", 108) Then
|
||||
Try
|
||||
For Each EachSameFile As String In EachSamefiles
|
||||
|
||||
SameFileExtentensions.Add(CInt(Mid(EachSameFile, FirstCharacter + 6)))
|
||||
|
||||
Next
|
||||
Catch ex As Exception
|
||||
|
||||
End Try
|
||||
|
||||
|
||||
SameFileExtentensions.Sort()
|
||||
SameFileExtentensions.Reverse()
|
||||
|
||||
|
||||
For i = 0 To SameFileExtentensions.Count - 1
|
||||
|
||||
If i < FilesToKeepNum Then
|
||||
|
||||
FilesToRename.Add(Strings.Left(SameFile, FirstCharacter) & FileType & "." & CStr(SameFileExtentensions(i)))
|
||||
|
||||
Else
|
||||
FilesToDelete.Add(Strings.Left(SameFile, FirstCharacter) & FileType & "." & CStr(SameFileExtentensions(i)))
|
||||
|
||||
End If
|
||||
|
||||
Next
|
||||
|
||||
|
||||
FilesToRename.Reverse()
|
||||
|
||||
|
||||
For Each asd In FilesToDelete
|
||||
My.Computer.FileSystem.DeleteFile(asd)
|
||||
NumberOfFilesDeleted = NumberOfFilesDeleted + 1
|
||||
|
||||
My.Computer.FileSystem.WriteAllText(TempTxtFile, Environment.NewLine + "File deleted:" + asd, True)
|
||||
MsgBox("File deleted: " + asd)
|
||||
' Console.WriteLine(asd)
|
||||
Next
|
||||
|
||||
|
||||
For Each asd In FilesToRename
|
||||
|
||||
FirstCharacter = asd.ToLower.IndexOf(FileType)
|
||||
'Console.WriteLine(asd)
|
||||
My.Computer.FileSystem.WriteAllText(TempTxtFile, Environment.NewLine + "File renamed: " + asd + "to: " + Strings.Left(asd, FirstCharacter + 5) & FilesToRename.IndexOf(asd) + 1, True)
|
||||
Console.WriteLine("File renamed: " + asd + "to: " + Strings.Left(asd, FirstCharacter + 5) & FilesToRename.IndexOf(asd) + 1)
|
||||
'Console.WriteLine(Strings.Left(asd, FirstCharacter + 5) & FilesToRename.IndexOf(asd) + 1)
|
||||
If asd <> Strings.Left(asd, FirstCharacter + 5) & FilesToRename.IndexOf(asd) + 1 Then
|
||||
|
||||
My.Computer.FileSystem.RenameFile(asd, Path.GetFileName(Strings.Left(asd, FirstCharacter + 5) & FilesToRename.IndexOf(asd) + 1))
|
||||
|
||||
End If
|
||||
|
||||
|
||||
Next
|
||||
|
||||
FilesToRename.Clear()
|
||||
FilesToDelete.Clear()
|
||||
SameFileExtentensions.Clear()
|
||||
|
||||
Next
|
||||
|
||||
SameFiles.Clear()
|
||||
Console.WriteLine("...")
|
||||
End Sub
|
||||
|
||||
|
||||
End Module
|
||||
59
Dokumentáció Készítő 3/My Project/AssemblyInfo.vb
Normal file
59
Dokumentáció Készítő 3/My Project/AssemblyInfo.vb
Normal file
@@ -0,0 +1,59 @@
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
Imports System.Runtime.InteropServices
|
||||
Imports System.Globalization
|
||||
Imports System.Resources
|
||||
Imports System.Windows
|
||||
|
||||
' General Information about an assembly is controlled through the following
|
||||
' set of attributes. Change these attribute values to modify the information
|
||||
' associated with an assembly.
|
||||
|
||||
' Review the values of the assembly attributes
|
||||
|
||||
<Assembly: AssemblyTitle("Dokumentáció_Készítő_3")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("Dokumentáció_Készítő_3")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2020")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
<Assembly: ComVisible(false)>
|
||||
|
||||
'In order to begin building localizable applications, set
|
||||
'<UICulture>CultureYouAreCodingWith</UICulture> in your .vbproj file
|
||||
'inside a <PropertyGroup>. For example, if you are using US english
|
||||
'in your source files, set the <UICulture> to "en-US". Then uncomment the
|
||||
'NeutralResourceLanguage attribute below. Update the "en-US" in the line
|
||||
'below to match the UICulture setting in the project file.
|
||||
|
||||
'<Assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)>
|
||||
|
||||
|
||||
'The ThemeInfo attribute describes where any theme specific and generic resource dictionaries can be found.
|
||||
'1st parameter: where theme specific resource dictionaries are located
|
||||
'(used if a resource is not found in the page,
|
||||
' or application resource dictionaries)
|
||||
|
||||
'2nd parameter: where the generic resource dictionary is located
|
||||
'(used if a resource is not found in the page,
|
||||
'app, and any theme specific resource dictionaries)
|
||||
<Assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)>
|
||||
|
||||
|
||||
|
||||
'The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
<Assembly: Guid("f4894402-26ea-4903-9ec7-718e56c15657")>
|
||||
|
||||
' Version information for an assembly consists of the following four values:
|
||||
'
|
||||
' Major Version
|
||||
' Minor Version
|
||||
' Build Number
|
||||
' Revision
|
||||
'
|
||||
' You can specify all the values or you can default the Build and Revision Numbers
|
||||
' by using the '*' as shown below:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.0.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
121
Dokumentáció Készítő 3/My Project/MyExtensions/MyWpfExtension.vb
Normal file
121
Dokumentáció Készítő 3/My Project/MyExtensions/MyWpfExtension.vb
Normal file
@@ -0,0 +1,121 @@
|
||||
#If _MyType <> "Empty" Then
|
||||
|
||||
Namespace My
|
||||
''' <summary>
|
||||
''' Module used to define the properties that are available in the My Namespace for WPF
|
||||
''' </summary>
|
||||
''' <remarks></remarks>
|
||||
<Global.Microsoft.VisualBasic.HideModuleName()> _
|
||||
Module MyWpfExtension
|
||||
Private s_Computer As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.Devices.Computer)
|
||||
Private s_User As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.ApplicationServices.User)
|
||||
Private s_Windows As New ThreadSafeObjectProvider(Of MyWindows)
|
||||
Private s_Log As New ThreadSafeObjectProvider(Of Global.Microsoft.VisualBasic.Logging.Log)
|
||||
''' <summary>
|
||||
''' Returns the application object for the running application
|
||||
''' </summary>
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")> _
|
||||
Friend ReadOnly Property Application() As Application
|
||||
Get
|
||||
Return CType(Global.System.Windows.Application.Current, Application)
|
||||
End Get
|
||||
End Property
|
||||
''' <summary>
|
||||
''' Returns information about the host computer.
|
||||
''' </summary>
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")> _
|
||||
Friend ReadOnly Property Computer() As Global.Microsoft.VisualBasic.Devices.Computer
|
||||
Get
|
||||
Return s_Computer.GetInstance()
|
||||
End Get
|
||||
End Property
|
||||
''' <summary>
|
||||
''' Returns information for the current user. If you wish to run the application with the current
|
||||
''' Windows user credentials, call My.User.InitializeWithWindowsUser().
|
||||
''' </summary>
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")> _
|
||||
Friend ReadOnly Property User() As Global.Microsoft.VisualBasic.ApplicationServices.User
|
||||
Get
|
||||
Return s_User.GetInstance()
|
||||
End Get
|
||||
End Property
|
||||
''' <summary>
|
||||
''' Returns the application log. The listeners can be configured by the application's configuration file.
|
||||
''' </summary>
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")> _
|
||||
Friend ReadOnly Property Log() As Global.Microsoft.VisualBasic.Logging.Log
|
||||
Get
|
||||
Return s_Log.GetInstance()
|
||||
End Get
|
||||
End Property
|
||||
|
||||
''' <summary>
|
||||
''' Returns the collection of Windows defined in the project.
|
||||
''' </summary>
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")> _
|
||||
Friend ReadOnly Property Windows() As MyWindows
|
||||
<Global.System.Diagnostics.DebuggerHidden()> _
|
||||
Get
|
||||
Return s_Windows.GetInstance()
|
||||
End Get
|
||||
End Property
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Never)> _
|
||||
<Global.Microsoft.VisualBasic.MyGroupCollection("System.Windows.Window", "Create__Instance__", "Dispose__Instance__", "My.MyWpfExtenstionModule.Windows")> _
|
||||
Friend NotInheritable Class MyWindows
|
||||
<Global.System.Diagnostics.DebuggerHidden()> _
|
||||
Private Shared Function Create__Instance__(Of T As {New, Global.System.Windows.Window})(ByVal Instance As T) As T
|
||||
If Instance Is Nothing Then
|
||||
If s_WindowBeingCreated IsNot Nothing Then
|
||||
If s_WindowBeingCreated.ContainsKey(GetType(T)) = True Then
|
||||
Throw New Global.System.InvalidOperationException("The window cannot be accessed via My.Windows from the Window constructor.")
|
||||
End If
|
||||
Else
|
||||
s_WindowBeingCreated = New Global.System.Collections.Hashtable()
|
||||
End If
|
||||
s_WindowBeingCreated.Add(GetType(T), Nothing)
|
||||
Return New T()
|
||||
s_WindowBeingCreated.Remove(GetType(T))
|
||||
Else
|
||||
Return Instance
|
||||
End If
|
||||
End Function
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1822:MarkMembersAsStatic")> _
|
||||
<Global.System.Diagnostics.DebuggerHidden()> _
|
||||
Private Sub Dispose__Instance__(Of T As Global.System.Windows.Window)(ByRef instance As T)
|
||||
instance = Nothing
|
||||
End Sub
|
||||
<Global.System.Diagnostics.DebuggerHidden()> _
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Never)> _
|
||||
Public Sub New()
|
||||
MyBase.New()
|
||||
End Sub
|
||||
<Global.System.ThreadStatic()> Private Shared s_WindowBeingCreated As Global.System.Collections.Hashtable
|
||||
<Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Never)> Public Overrides Function Equals(ByVal o As Object) As Boolean
|
||||
Return MyBase.Equals(o)
|
||||
End Function
|
||||
<Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Never)> Public Overrides Function GetHashCode() As Integer
|
||||
Return MyBase.GetHashCode
|
||||
End Function
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1822:MarkMembersAsStatic")> _
|
||||
<Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Never)> _
|
||||
Friend Overloads Function [GetType]() As Global.System.Type
|
||||
Return GetType(MyWindows)
|
||||
End Function
|
||||
<Global.System.ComponentModel.EditorBrowsable(Global.System.ComponentModel.EditorBrowsableState.Never)> Public Overrides Function ToString() As String
|
||||
Return MyBase.ToString
|
||||
End Function
|
||||
End Class
|
||||
End Module
|
||||
End Namespace
|
||||
Partial Class Application
|
||||
Inherits Global.System.Windows.Application
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")> _
|
||||
<Global.System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1822:MarkMembersAsStatic")> _
|
||||
Friend ReadOnly Property Info() As Global.Microsoft.VisualBasic.ApplicationServices.AssemblyInfo
|
||||
<Global.System.Diagnostics.DebuggerHidden()> _
|
||||
Get
|
||||
Return New Global.Microsoft.VisualBasic.ApplicationServices.AssemblyInfo(Global.System.Reflection.Assembly.GetExecutingAssembly())
|
||||
End Get
|
||||
End Property
|
||||
End Class
|
||||
#End If
|
||||
62
Dokumentáció Készítő 3/My Project/Resources.Designer.vb
generated
Normal file
62
Dokumentáció Készítő 3/My Project/Resources.Designer.vb
generated
Normal file
@@ -0,0 +1,62 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:$clrversion$
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My.Resources
|
||||
|
||||
'This class was auto-generated by the StronglyTypedResourceBuilder
|
||||
'class via a tool like ResGen or Visual Studio.
|
||||
'To add or remove a member, edit your .ResX file then rerun ResGen
|
||||
'with the /str option, or rebuild your VS project.
|
||||
'''<summary>
|
||||
''' A strongly-typed resource class, for looking up localized strings, etc.
|
||||
'''</summary>
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||
Friend Module Resources
|
||||
|
||||
Private resourceMan As Global.System.Resources.ResourceManager
|
||||
|
||||
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||
|
||||
'''<summary>
|
||||
''' Returns the cached ResourceManager instance used by this class.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||
Get
|
||||
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("$safeprojectname$.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Overrides the current thread's CurrentUICulture property for all
|
||||
''' resource lookups using this strongly typed resource class.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||
Get
|
||||
Return resourceCulture
|
||||
End Get
|
||||
Set(ByVal value As Global.System.Globalization.CultureInfo)
|
||||
resourceCulture = value
|
||||
End Set
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
117
Dokumentáció Készítő 3/My Project/Resources.resx
Normal file
117
Dokumentáció Készítő 3/My Project/Resources.resx
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
73
Dokumentáció Készítő 3/My Project/Settings.Designer.vb
generated
Normal file
73
Dokumentáció Készítő 3/My Project/Settings.Designer.vb
generated
Normal file
@@ -0,0 +1,73 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' This code was generated by a tool.
|
||||
' Runtime Version:4.0.30319.42000
|
||||
'
|
||||
' Changes to this file may cause incorrect behavior and will be lost if
|
||||
' the code is regenerated.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _
|
||||
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Partial Friend NotInheritable Class MySettings
|
||||
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||
|
||||
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings)
|
||||
|
||||
#Region "My.Settings Auto-Save Functionality"
|
||||
#If _MyType = "WindowsForms" Then
|
||||
Private Shared addedHandler As Boolean
|
||||
|
||||
Private Shared addedHandlerLockObject As New Object
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
|
||||
If My.Application.SaveMySettingsOnExit Then
|
||||
My.Settings.Save()
|
||||
End If
|
||||
End Sub
|
||||
#End If
|
||||
#End Region
|
||||
|
||||
Public Shared ReadOnly Property [Default]() As MySettings
|
||||
Get
|
||||
|
||||
#If _MyType = "WindowsForms" Then
|
||||
If Not addedHandler Then
|
||||
SyncLock addedHandlerLockObject
|
||||
If Not addedHandler Then
|
||||
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||
addedHandler = True
|
||||
End If
|
||||
End SyncLock
|
||||
End If
|
||||
#End If
|
||||
Return defaultInstance
|
||||
End Get
|
||||
End Property
|
||||
End Class
|
||||
End Namespace
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||
Friend Module MySettingsProperty
|
||||
|
||||
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||
Friend ReadOnly Property Settings() As Global.Dokumentáció_Készítő_3.My.MySettings
|
||||
Get
|
||||
Return Global.Dokumentáció_Készítő_3.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
7
Dokumentáció Készítő 3/My Project/Settings.settings
Normal file
7
Dokumentáció Készítő 3/My Project/Settings.settings
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true">
|
||||
<Profiles>
|
||||
<Profile Name="(Default)" />
|
||||
</Profiles>
|
||||
<Settings />
|
||||
</SettingsFile>
|
||||
BIN
Dokumentáció Készítő 3/Serialized2.ser
Normal file
BIN
Dokumentáció Készítő 3/Serialized2.ser
Normal file
Binary file not shown.
31
Dokumentáció Készítő 3/Window1.xaml
Normal file
31
Dokumentáció Készítő 3/Window1.xaml
Normal file
@@ -0,0 +1,31 @@
|
||||
<Window x:Class="form5"
|
||||
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
||||
TextElement.FontWeight="Regular"
|
||||
TextElement.FontSize="13"
|
||||
TextOptions.TextFormattingMode="Ideal"
|
||||
TextOptions.TextRenderingMode="Auto"
|
||||
Background="{DynamicResource MaterialDesignPaper}"
|
||||
FontFamily="{DynamicResource MaterialDesignFont}"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
mc:Ignorable="d"
|
||||
Title="MainWindow" Height="174.584" Width="385.265" FontSize="13" WindowStartupLocation="CenterScreen" WindowStyle="None">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<Label Content="Német megnevezées" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="132"/>
|
||||
<Label Content="Magyar megnevezés" HorizontalAlignment="Left" Margin="10,66,0,0" VerticalAlignment="Top" Width="109"/>
|
||||
<TextBox x:Name="NemetMegnevezes" HorizontalAlignment="Left" Height="22" Margin="10,39,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="120"/>
|
||||
<TextBox x:Name="MagyarMegnevezes" HorizontalAlignment="Left" Height="22" Margin="10,90,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="120"/>
|
||||
<Button x:Name="MaterialRaisedButton3" HorizontalAlignment="Left" Margin="233,10,0,0" VerticalAlignment="Top" Width="134" Content="Google keresés"/>
|
||||
<Button x:Name="MaterialRaisedButton4" Content="MNSZ keresés" HorizontalAlignment="Left" Margin="233,47,0,0" VerticalAlignment="Top" Width="134"/>
|
||||
<Button x:Name="MaterialRaisedButton2" Content="Mégsem" HorizontalAlignment="Left" Margin="293,125,0,0" VerticalAlignment="Top" Width="74" Click="Button_Click"/>
|
||||
<Button x:Name="MaterialRaisedButton1" Content="Ok" HorizontalAlignment="Left" Margin="10,125,0,0" VerticalAlignment="Top" Width="74"/>
|
||||
<Button x:Name="MaterialRaisedButton5" Content="Folyamat befejezése" HorizontalAlignment="Left" Margin="105,125,0,0" Width="169" Height="32" VerticalAlignment="Top"/>
|
||||
<Label x:Name="MaterialLabel4" Content="" HorizontalAlignment="Left" Margin="135,88,0,0" VerticalAlignment="Top" Width="109" x:FieldModifier="public" />
|
||||
|
||||
</Grid>
|
||||
</Window>
|
||||
69
Dokumentáció Készítő 3/Window1.xaml.vb
Normal file
69
Dokumentáció Készítő 3/Window1.xaml.vb
Normal file
@@ -0,0 +1,69 @@
|
||||
|
||||
Imports System.IO
|
||||
Imports System.Runtime.Serialization.Formatters.Binary
|
||||
|
||||
Public Class Form5
|
||||
|
||||
Public Shared NemetMegnevezesStr As String
|
||||
Public Shared MagyarMegnevezesStr As String
|
||||
|
||||
Public WWClicked As String
|
||||
Private Sub MyWindow_Loaded(ByVal sender As Object, ByVal e As RoutedEventArgs)
|
||||
|
||||
'Material skin select
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton2_Click(sender As Object, e As EventArgs) Handles MaterialRaisedButton2.Click
|
||||
WWClicked = "Cancel"
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
|
||||
Private Sub MaterialRaisedButton1_Click(sender As Object, e As EventArgs) Handles MaterialRaisedButton1.Click
|
||||
WWClicked = "OK"
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton3_Click(sender As Object, e As EventArgs) Handles MaterialRaisedButton3.Click
|
||||
Dim webAddress As String = "https://translate.google.com/?client=firefox-b-d&um=1&ie=UTF-8&hl=hu&client=tw-ob#view=home&op=translate&sl=de&tl=hu&text=" & NemetMegnevezes.Text
|
||||
Process.Start(webAddress)
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton4_Click(sender As Object, e As EventArgs) Handles MaterialRaisedButton4.Click
|
||||
Dim webAddress As String = "https://magyar-nemet-szotar.hu/" & NemetMegnevezes.Text & "-magyarul.html"
|
||||
Process.Start(webAddress)
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton5_Click(sender As Object, e As EventArgs) Handles MaterialRaisedButton5.Click
|
||||
WWClicked = "FB"
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub Button_Click(sender As Object, e As RoutedEventArgs)
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub NemetMegnevezes_LostFocus(sender As Object, e As RoutedEventArgs) Handles NemetMegnevezes.LostFocus
|
||||
|
||||
Dim magyarmegnevezesstr As String = ""
|
||||
If MainWindow.dict.TryGetValue(NemetMegnevezes.Text, magyarmegnevezesstr) = True Then
|
||||
MaterialLabel4.Background = Brushes.Green
|
||||
MaterialLabel4.Content = "Megtaláható a szótárban!"
|
||||
MagyarMegnevezes.Text = magyarmegnevezesstr
|
||||
' MsgBox("!!")
|
||||
Else
|
||||
MaterialLabel4.Content = ""
|
||||
MainWindow.gtranslate(NemetMegnevezes.Text, "de", "hu")
|
||||
' MsgBox("!")
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton5_Click_1(sender As Object, e As RoutedEventArgs) Handles MaterialRaisedButton5.Click
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub NemetMegnevezes_TextChanged(sender As Object, e As TextChangedEventArgs) Handles NemetMegnevezes.TextChanged
|
||||
|
||||
End Sub
|
||||
End Class
|
||||
BIN
Dokumentáció Készítő 3/baseline_clear_black_18dp.png
Normal file
BIN
Dokumentáció Készítő 3/baseline_clear_black_18dp.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 209 B |
25
Dokumentáció Készítő 3/form3.xaml
Normal file
25
Dokumentáció Készítő 3/form3.xaml
Normal file
@@ -0,0 +1,25 @@
|
||||
<Window x:Class="Form3"
|
||||
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
||||
TextElement.FontWeight="Regular"
|
||||
TextElement.FontSize="13"
|
||||
TextOptions.TextFormattingMode="Ideal"
|
||||
TextOptions.TextRenderingMode="Auto"
|
||||
Background="{DynamicResource MaterialDesignPaper}"
|
||||
FontFamily="{DynamicResource MaterialDesignFont}"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:local="clr-namespace:Dokumentáció_Készítő_3"
|
||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||
xmlns:mde="clr-namespace:MaterialDesignExtensions.Controls;assembly=MaterialDesignExtensions"
|
||||
mc:Ignorable="d"
|
||||
Title="Elkészült" Height="183.994" Width="370.188" FontSize="13" WindowStyle="None" WindowStartupLocation="CenterScreen">
|
||||
<Grid Height="178" VerticalAlignment="Top" HorizontalAlignment="Left" Width="370" Margin="0,0,-8,0">
|
||||
<TextBox x:Name="TextBox1" HorizontalAlignment="Left" Height="68" Margin="0,63,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="360" IsReadOnly="True" BorderBrush="{DynamicResource {x:Static SystemColors.ActiveBorderBrushKey}}" BorderThickness="1" VerticalScrollBarVisibility="Auto"/>
|
||||
<Button x:Name="MaterialRaisedButton1" Content="Ok" HorizontalAlignment="Left" Margin="10,136,0,0" VerticalAlignment="Top" Width="156" RenderTransformOrigin="0.785,1.101"/>
|
||||
<Label x:Name="Label1" Content="A dokumentáció elkészült" Margin="0,10,10,0" FontSize="20" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Height="48" VerticalAlignment="Top"/>
|
||||
<Button x:Name="MaterialRaisedButton2" Content="Tartalmazó mappa" HorizontalAlignment="Left" Margin="187,136,0,0" VerticalAlignment="Top" Width="156" RenderTransformOrigin="0.785,1.101"/>
|
||||
|
||||
</Grid>
|
||||
</Window>
|
||||
35
Dokumentáció Készítő 3/form3.xaml.vb
Normal file
35
Dokumentáció Készítő 3/form3.xaml.vb
Normal file
@@ -0,0 +1,35 @@
|
||||
Public Class Form3
|
||||
|
||||
Private Sub Form3_Loaded(ByVal sender As Object, ByVal e As EventArgs) Handles MyClass.Loaded
|
||||
|
||||
TextBox1.Text = MainWindow.sresult
|
||||
' MaterialLabel2.Text = "Hibák száma: " & MainWindow.HibakSzama
|
||||
|
||||
If MainWindow.HibakSzama = 0 Then
|
||||
Label1.Foreground = Brushes.Green
|
||||
Else
|
||||
Label1.Foreground = Brushes.Red
|
||||
If MainWindow.HibakSzama = 1 And MainWindow.ddas = False Then
|
||||
Label1.Foreground = Brushes.Orange
|
||||
End If
|
||||
End If
|
||||
HandleWindow.FocusWindowM("Elkészül", "t")
|
||||
Me.Topmost = False
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton1_Click(sender As Object, e As EventArgs) Handles MaterialRaisedButton1.Click
|
||||
Me.Close()
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton2_Click(sender As Object, e As EventArgs) Handles MaterialRaisedButton2.Click
|
||||
Process.Start(MainWindow.workDir)
|
||||
End Sub
|
||||
|
||||
Private Sub TextBox1_TextChanged(sender As Object, e As TextChangedEventArgs) Handles TextBox1.TextChanged
|
||||
|
||||
End Sub
|
||||
|
||||
Private Sub MaterialRaisedButton1_Click_1(sender As Object, e As RoutedEventArgs) Handles MaterialRaisedButton1.Click
|
||||
|
||||
End Sub
|
||||
End Class
|
||||
BIN
Dokumentáció Készítő 3/logo.png
Normal file
BIN
Dokumentáció Készítő 3/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
13
Dokumentáció Készítő 3/packages.config
Normal file
13
Dokumentáció Készítő 3/packages.config
Normal file
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Common.Logging" version="3.4.1" targetFramework="net472" />
|
||||
<package id="Common.Logging.Core" version="3.4.1" targetFramework="net472" />
|
||||
<package id="iTextSharp" version="5.5.13.1" targetFramework="net472" />
|
||||
<package id="MaterialDesignColors" version="1.2.4" targetFramework="net472" />
|
||||
<package id="MaterialDesignExtensions" version="3.1.0" targetFramework="net472" />
|
||||
<package id="MaterialDesignThemes" version="3.1.1" targetFramework="net472" />
|
||||
<package id="Microsoft.CSharp" version="4.0.1" targetFramework="net472" />
|
||||
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net472" />
|
||||
<package id="Ookii.Dialogs" version="1.0" targetFramework="net472" />
|
||||
<package id="Portable.BouncyCastle" version="1.8.5" targetFramework="net472" />
|
||||
</packages>
|
||||
Reference in New Issue
Block a user