init save dotnet7
This commit is contained in:
25
Kaehler.scr.sln
Normal file
25
Kaehler.scr.sln
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.4.33110.190
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Kaehler.scr", "Kaehler.scr\Kaehler.scr.csproj", "{51035891-0023-43FF-AAFC-25E3DC10C570}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{51035891-0023-43FF-AAFC-25E3DC10C570}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{51035891-0023-43FF-AAFC-25E3DC10C570}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{51035891-0023-43FF-AAFC-25E3DC10C570}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{51035891-0023-43FF-AAFC-25E3DC10C570}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {225D1E18-3CD7-47E6-BE6B-50AB72D773AD}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
8
Kaehler.scr/App.xaml
Normal file
8
Kaehler.scr/App.xaml
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
<Application x:Class="Kaehler.scr.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
Startup="Application_Startup">
|
||||||
|
<Application.Resources>
|
||||||
|
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
||||||
237
Kaehler.scr/App.xaml.cs
Normal file
237
Kaehler.scr/App.xaml.cs
Normal file
@@ -0,0 +1,237 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Configuration;
|
||||||
|
using System.ComponentModel;
|
||||||
|
using System.Data;
|
||||||
|
//using System.Deployment.Application;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Interop;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Threading;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.IO;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
namespace Kaehler.scr
|
||||||
|
{
|
||||||
|
public partial class App : System.Windows.Application
|
||||||
|
{
|
||||||
|
/* private enum UpdateStatuses
|
||||||
|
{
|
||||||
|
NoUpdateAvailable,
|
||||||
|
UpdateAvailable,
|
||||||
|
UpdateRequired,
|
||||||
|
NotDeployedViaClickOnce,
|
||||||
|
DeploymentDownloadException,
|
||||||
|
InvalidDeploymentException,
|
||||||
|
InvalidOperationException
|
||||||
|
}*/
|
||||||
|
|
||||||
|
private void Application_Startup(object sender, StartupEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
CheckForExistingInstance();
|
||||||
|
if (e.Args.GetLength(0) > 0) // es gibt einen Parameter
|
||||||
|
{
|
||||||
|
// Normal screensaver mode.
|
||||||
|
if (e.Args[0].ToLower().StartsWith("/s"))
|
||||||
|
{
|
||||||
|
StartScreenSaver();
|
||||||
|
}
|
||||||
|
else // "/c" "/p" - Config, Preview mode
|
||||||
|
{
|
||||||
|
if (e.Args[0].ToLower().StartsWith("/c"))
|
||||||
|
{
|
||||||
|
System.Windows.MessageBox.Show("Es gibt noch keine Konfigurationsmöglichkeit.");
|
||||||
|
}
|
||||||
|
//if (e.Args[0].ToLower().StartsWith("/p"))
|
||||||
|
//{
|
||||||
|
// System.Windows.MessageBox.Show("Es gibt noch keine Preview.");
|
||||||
|
//}
|
||||||
|
System.Windows.Application.Current.Shutdown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else // kein Parameter App-Mode
|
||||||
|
{
|
||||||
|
StartScreenSaver();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
System.Windows.MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CheckForExistingInstance()
|
||||||
|
{
|
||||||
|
if (Process.GetProcessesByName(Process.GetCurrentProcess().ProcessName.ToString()).Length > 1)
|
||||||
|
{
|
||||||
|
System.Windows.Application.Current.Shutdown();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void StartScreenSaver()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
/* Das Deployment funktioniert nicht für scr-Dateien ...
|
||||||
|
try
|
||||||
|
{
|
||||||
|
ApplicationDeployment updateCheck = ApplicationDeployment.CurrentDeployment;
|
||||||
|
UpdateCheckInfo info = updateCheck.CheckForDetailedUpdate();
|
||||||
|
//
|
||||||
|
if (info.UpdateAvailable)
|
||||||
|
{
|
||||||
|
UpdateApplication();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception uex)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Exception in " + uex.Source.ToString() + ": " + uex.Message);
|
||||||
|
//System.Windows.Forms.MessageBox.Show("Exception in " + uex.Source.ToString() + ": " + uex.Message);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
MainWindow ss = new MainWindow();
|
||||||
|
ss.WindowStartupLocation = WindowStartupLocation.Manual;
|
||||||
|
System.Drawing.Rectangle location;
|
||||||
|
if (Screen.PrimaryScreen != null) {
|
||||||
|
location = Screen.PrimaryScreen.Bounds;
|
||||||
|
ss.WindowState = WindowState.Maximized;
|
||||||
|
ss.Show();
|
||||||
|
ss.LayoutReset();
|
||||||
|
}
|
||||||
|
/* ******************************************************************* */
|
||||||
|
//creates window on other screens
|
||||||
|
foreach (System.Windows.Forms.Screen screen in System.Windows.Forms.Screen.AllScreens)
|
||||||
|
{
|
||||||
|
if (screen == System.Windows.Forms.Screen.PrimaryScreen)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
MainWindow window = new MainWindow();
|
||||||
|
window.WindowStartupLocation = WindowStartupLocation.Manual;
|
||||||
|
location = screen.Bounds;
|
||||||
|
//covers entire monitor
|
||||||
|
window.Left = location.X - 7;
|
||||||
|
window.Top = location.Y - 7;
|
||||||
|
window.Width = location.Width + 14;
|
||||||
|
window.Height = location.Height + 14;
|
||||||
|
window.Show();
|
||||||
|
window.LayoutReset();
|
||||||
|
|
||||||
|
}
|
||||||
|
/* ******************************************************************* */
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(value: "Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
System.Windows.Forms.MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* void bgWorker_DoWork(object sender, DoWorkEventArgs e)
|
||||||
|
{
|
||||||
|
UpdateCheckInfo info = null;
|
||||||
|
|
||||||
|
// Check if the application was deployed via ClickOnce.
|
||||||
|
if (!ApplicationDeployment.IsNetworkDeployed)
|
||||||
|
{
|
||||||
|
e.Result = UpdateStatuses.NotDeployedViaClickOnce;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ApplicationDeployment updateCheck = ApplicationDeployment.CurrentDeployment;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
info = updateCheck.CheckForDetailedUpdate();
|
||||||
|
}
|
||||||
|
catch (DeploymentDownloadException dde)
|
||||||
|
{
|
||||||
|
e.Result = UpdateStatuses.DeploymentDownloadException;
|
||||||
|
Console.WriteLine("Exception in " + dde.Source.ToString() + ": " + dde.Message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
catch (InvalidDeploymentException ide)
|
||||||
|
{
|
||||||
|
e.Result = UpdateStatuses.InvalidDeploymentException;
|
||||||
|
Console.WriteLine("Exception in " + ide.Source.ToString() + ": " + ide.Message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
catch (InvalidOperationException ioe)
|
||||||
|
{
|
||||||
|
e.Result = UpdateStatuses.InvalidOperationException;
|
||||||
|
Console.WriteLine("Exception in " + ioe.Source.ToString() + ": " + ioe.Message);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (info.UpdateAvailable)
|
||||||
|
if (info.IsUpdateRequired)
|
||||||
|
e.Result = UpdateStatuses.UpdateRequired;
|
||||||
|
else
|
||||||
|
e.Result = UpdateStatuses.UpdateAvailable;
|
||||||
|
else
|
||||||
|
e.Result = UpdateStatuses.NoUpdateAvailable;
|
||||||
|
}*/
|
||||||
|
|
||||||
|
/* void bgWorker_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
|
||||||
|
{
|
||||||
|
switch ((UpdateStatuses)e.Result)
|
||||||
|
{
|
||||||
|
case UpdateStatuses.NoUpdateAvailable:
|
||||||
|
// No update available, do nothing
|
||||||
|
System.Windows.Forms.MessageBox.Show("Es gibt kein Update, danke...");
|
||||||
|
break;
|
||||||
|
case UpdateStatuses.UpdateAvailable:
|
||||||
|
DialogResult dialogResult = System.Windows.Forms.MessageBox.Show("Für den Screensaver gibt es ein Update. Jetzt einspielen?", "Update verfügbar", MessageBoxButtons.OKCancel);
|
||||||
|
if (dialogResult == DialogResult.OK)
|
||||||
|
UpdateApplication();
|
||||||
|
break;
|
||||||
|
case UpdateStatuses.UpdateRequired:
|
||||||
|
System.Windows.Forms.MessageBox.Show("Ein erforderliches Update ist verfügbar, dieses wird jetzt installiert.", "Update verfügbar", MessageBoxButtons.OK);
|
||||||
|
UpdateApplication();
|
||||||
|
break;
|
||||||
|
case UpdateStatuses.NotDeployedViaClickOnce:
|
||||||
|
System.Windows.Forms.MessageBox.Show("Is this deployed via ClickOnce?");
|
||||||
|
break;
|
||||||
|
case UpdateStatuses.DeploymentDownloadException:
|
||||||
|
System.Windows.Forms.MessageBox.Show("Whoops, couldn't retrieve info on this app...");
|
||||||
|
break;
|
||||||
|
case UpdateStatuses.InvalidDeploymentException:
|
||||||
|
System.Windows.Forms.MessageBox.Show("Cannot check for a new version. ClickOnce deployment is corrupt!");
|
||||||
|
break;
|
||||||
|
case UpdateStatuses.InvalidOperationException:
|
||||||
|
System.Windows.Forms.MessageBox.Show("This application cannot be updated. It is likely not a ClickOnce application.");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
System.Windows.Forms.MessageBox.Show("Nanu?");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
|
||||||
|
/* private void UpdateApplication()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
ApplicationDeployment updateCheck = ApplicationDeployment.CurrentDeployment;
|
||||||
|
updateCheck.Update();
|
||||||
|
System.Windows.MessageBox.Show("Der Screensaver wurde erneuert und wird daher jetzt beendet.");
|
||||||
|
System.Windows.Application.Current.Shutdown();
|
||||||
|
}
|
||||||
|
catch (DeploymentDownloadException dde)
|
||||||
|
{
|
||||||
|
System.Windows.MessageBox.Show("Cannot install the latest version of the application. \n\nPlease check your network connection, or try again later. Error: " + dde);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}*/
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
10
Kaehler.scr/AssemblyInfo.cs
Normal file
10
Kaehler.scr/AssemblyInfo.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
[assembly: ThemeInfo(
|
||||||
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// or application resource dictionaries)
|
||||||
|
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// app, or any theme specific resource dictionaries)
|
||||||
|
)]
|
||||||
11
Kaehler.scr/Kaehler.scr.csproj
Normal file
11
Kaehler.scr/Kaehler.scr.csproj
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<TargetFramework>net7.0-windows</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<UseWPF>True</UseWPF>
|
||||||
|
<UseWindowsForms>True</UseWindowsForms>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
14
Kaehler.scr/Kaehler.scr.csproj.user
Normal file
14
Kaehler.scr/Kaehler.scr.csproj.user
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup />
|
||||||
|
<ItemGroup>
|
||||||
|
<ApplicationDefinition Update="App.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</ApplicationDefinition>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Page Update="MainWindow.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
28
Kaehler.scr/MainWindow.xaml
Normal file
28
Kaehler.scr/MainWindow.xaml
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
<Window x:Class="Kaehler.scr.MainWindow"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
Title="Kaehler.scr" Height="350" Width="525" ShowInTaskbar="False" ToolTip="Bildschirmschoner - Klicken oder Taste zum Beenden ..." Topmost="False" WindowStartupLocation="Manual" WindowState="Normal" WindowStyle="None" MouseLeftButtonUp="Window_MouseLeftButtonUp" MouseRightButtonUp="Window_MouseRightButtonUp" MouseDoubleClick="Window_MouseDoubleClick" KeyUp="Window_KeyUp" ResizeMode="NoResize" Background="Black" AllowsTransparency="True" Cursor="None" Opacity="0.1" Loaded="Window_Loaded" Foreground="#FFF2E6E6" Name="ScrWindow">
|
||||||
|
<Grid>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="54*" />
|
||||||
|
<RowDefinition Height="207*" />
|
||||||
|
<RowDefinition Height="50*" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="56*" />
|
||||||
|
<ColumnDefinition Width="392*" />
|
||||||
|
<ColumnDefinition Width="55*" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
|
<Canvas Name="scrcanvas" Grid.ColumnSpan="3" Grid.RowSpan="3" Opacity="1">
|
||||||
|
<Image Canvas.Left="5" Canvas.Top="5" Height="50" Name="image1" Stretch="Uniform" Width="50" Visibility="Hidden" KeyDown="image1_KeyDown" MouseDown="image1_MouseDown" MouseWheel="image1_MouseWheel" />
|
||||||
|
<Image Canvas.Left="450" Canvas.Top="5" Height="50" Name="image2" Stretch="Uniform" Width="50" Visibility="Hidden" KeyDown="image2_KeyDown" MouseDown="image2_MouseDown" MouseWheel="image2_MouseWheel" />
|
||||||
|
<Image Canvas.Left="55" Canvas.Top="55" Height="206" Name="imageSCR" Stretch="Uniform" Width="393" Margin="0" StretchDirection="DownOnly" Visibility="Hidden" />
|
||||||
|
<Image Canvas.Left="5" Canvas.Top="260" Height="50" Name="image3" Stretch="Uniform" Width="50" />
|
||||||
|
<Image Canvas.Left="450" Canvas.Top="260" Height="50" Name="image4" Stretch="Uniform" Width="50" />
|
||||||
|
<Image Canvas.Left="1" Canvas.Top="1" Height="50" Name="image5" Stretch="Uniform" Width="50" />
|
||||||
|
<TextBlock Canvas.Left="55" Canvas.Top="261" Height="50" Name="txtZitat" Text="" Width="393" Foreground="#FF7D90DE" TextAlignment="Center" FontSize="14" TextWrapping="Wrap" />
|
||||||
|
<Image Canvas.Left="212" Canvas.Top="263" Height="41" Name="imageBug" Stretch="Fill" Width="48" Source="/Kaehler.scr;component/apps_bug.png" Visibility="Hidden" />
|
||||||
|
</Canvas>
|
||||||
|
</Grid>
|
||||||
|
</Window>
|
||||||
828
Kaehler.scr/MainWindow.xaml.cs
Normal file
828
Kaehler.scr/MainWindow.xaml.cs
Normal file
@@ -0,0 +1,828 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
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 System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Threading;
|
||||||
|
using System.Net.Cache;
|
||||||
|
using System.IO;
|
||||||
|
using System.Net;
|
||||||
|
using System.Diagnostics;
|
||||||
|
//using System.Drawing;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kaehler.scr
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Interaktionslogik für MainWindow.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : Window
|
||||||
|
{
|
||||||
|
const int cTimerStart = 1;
|
||||||
|
const int cStartAnzeige = 12;
|
||||||
|
const int cAusblenden = 11;
|
||||||
|
const int cTimerDeAni = 31; //war 21
|
||||||
|
|
||||||
|
private DispatcherTimer randTimer;
|
||||||
|
private bool bRandTimer;
|
||||||
|
//0=nix, 1..5 Image, 6 Zitat
|
||||||
|
private int iAktivesElement;
|
||||||
|
private Random oRand;
|
||||||
|
private int randCounter;
|
||||||
|
|
||||||
|
public MainWindow()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void SCRBeenden()
|
||||||
|
{
|
||||||
|
App.Current.Shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Window_Loaded(object sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
randTimer = new DispatcherTimer();
|
||||||
|
randTimer.Tick += new EventHandler(randTimer_Tick);
|
||||||
|
randTimer.Interval = new TimeSpan(0, 0, 0, 10); //10 Sekunden (3 zum Test)
|
||||||
|
oRand = new Random();
|
||||||
|
iAktivesElement = 0;
|
||||||
|
randCounter = 0;
|
||||||
|
Logge("Starte Anzeige-Verdunklung");
|
||||||
|
WinDeAni();
|
||||||
|
Logge("Starte Randomizer");
|
||||||
|
bRandTimer = true;
|
||||||
|
randTimer.Start();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Logge(string sLogText)
|
||||||
|
{
|
||||||
|
Console.WriteLine(sLogText);
|
||||||
|
SimpleEventLog(sLogText,false);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LoggeFehler(string sLogText)
|
||||||
|
{
|
||||||
|
Console.WriteLine(sLogText);
|
||||||
|
SimpleEventLog(sLogText, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void randTimer_Tick(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
if (bRandTimer)
|
||||||
|
{
|
||||||
|
randCounter += 1;
|
||||||
|
Logge("Timer: " + randCounter.ToString());
|
||||||
|
if (randCounter == cTimerStart) //erster Durchlauf nach 10s
|
||||||
|
{
|
||||||
|
// ... beginne mit Zitat
|
||||||
|
LoadZoomZitat();
|
||||||
|
randCounter = cTimerDeAni; // 1 x 10s bis zur DeAnimation
|
||||||
|
}
|
||||||
|
// cAusblenden ... cStartAnzeige = Pause
|
||||||
|
else if (randCounter == cStartAnzeige) //Starte zufällige Anzeige
|
||||||
|
{
|
||||||
|
//Auswürfeln ..
|
||||||
|
LayoutReset();
|
||||||
|
iAktivesElement = (int)oRand.Next(7);
|
||||||
|
if (iAktivesElement == 0) { iAktivesElement = 1; }
|
||||||
|
if (iAktivesElement == 7) { iAktivesElement = 6; }
|
||||||
|
Logge("Random-Wert: " + iAktivesElement.ToString());
|
||||||
|
//Test:
|
||||||
|
//iAktivesElement = 5;
|
||||||
|
switch (iAktivesElement)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
LoadZoomImage(image1);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
LoadZoomImage(image2);
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
LoadZoomImage(image3);
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
LoadZoomImage(image4);
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
LoadOpaqueImage(image5);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
LoadZoomZitat();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (randCounter == cStartAnzeige + 1) //10s nach Anzeige-Start
|
||||||
|
{ // manchmal wird die Animation nicht ausgeführt (?)
|
||||||
|
|
||||||
|
//Logge("(deaktiviert) Aktives Element (" + iAktivesElement.ToString() + ") auf Sichtbar zwingen ...");
|
||||||
|
//switch (iAktivesElement)
|
||||||
|
//{
|
||||||
|
// case 1:
|
||||||
|
// image1.Visibility = Visibility.Visible;
|
||||||
|
// image1.Opacity = 1;
|
||||||
|
// break;
|
||||||
|
// case 2:
|
||||||
|
// image2.Visibility = Visibility.Visible;
|
||||||
|
// image2.Opacity = 1;
|
||||||
|
// break;
|
||||||
|
// case 3:
|
||||||
|
// image3.Visibility = Visibility.Visible;
|
||||||
|
// image3.Opacity = 1;
|
||||||
|
// break;
|
||||||
|
// case 4:
|
||||||
|
// image4.Visibility = Visibility.Visible;
|
||||||
|
// image4.Opacity = 1;
|
||||||
|
// break;
|
||||||
|
// case 5:
|
||||||
|
// txtZitat.Visibility = Visibility.Visible;
|
||||||
|
// txtZitat.Opacity = 1;
|
||||||
|
// break;
|
||||||
|
//}
|
||||||
|
|
||||||
|
}
|
||||||
|
else if (randCounter > cTimerDeAni) // 10 x 10s ... Bild lange genug gezeigt
|
||||||
|
{ // Ausblenden mit Ani
|
||||||
|
switch (iAktivesElement)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
DeAniImage(image1);
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
DeAniImage(image2);
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
DeAniImage(image3);
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
DeAniImage(image4);
|
||||||
|
break;
|
||||||
|
case 5:
|
||||||
|
DeAniImage(image5);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
ZitatDeAni();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
iAktivesElement = 0;
|
||||||
|
randCounter = cAusblenden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LoadZoomZitat()
|
||||||
|
{
|
||||||
|
Logge("Lade Zitat...");
|
||||||
|
try
|
||||||
|
{
|
||||||
|
iAktivesElement = 5;
|
||||||
|
bool hasText = LoadZitat();
|
||||||
|
if (hasText)
|
||||||
|
{
|
||||||
|
ZoomZitatAni();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
txtZitat.Visibility = Visibility.Hidden;
|
||||||
|
Logge("Zitat ausblenden / Err");
|
||||||
|
randCounter = cTimerDeAni; // DeAnimation
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LoadZoomImage(Image ZielImage)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
double xMax = LoadImage(ZielImage);
|
||||||
|
Logge("Image geladen");
|
||||||
|
if (xMax < imageSCR.Height)
|
||||||
|
{
|
||||||
|
Logge("Imagegröße kleiner Screenhöhe: " + xMax.ToString());
|
||||||
|
ZielImage.Height = xMax;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Logge("Imagegröße größer Screenhöhe: " + xMax.ToString());
|
||||||
|
ZielImage.Height = imageSCR.Height;
|
||||||
|
}
|
||||||
|
if (xMax < imageSCR.Width)
|
||||||
|
{
|
||||||
|
Logge("Imagegröße kleiner Screenbreite: " + xMax.ToString());
|
||||||
|
ZielImage.Width = xMax;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Logge("Imagegröße größer Screenbreite: " + xMax.ToString());
|
||||||
|
ZielImage.Width = imageSCR.Width;
|
||||||
|
}
|
||||||
|
//AniImage(ZielImage);
|
||||||
|
ZoomAni(ZielImage);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source.ToString() + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source.ToString() + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LoadOpaqueImage(Image ZielImage)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
double xMax = LoadImage(ZielImage);
|
||||||
|
Logge("Image geladen");
|
||||||
|
if (xMax < imageSCR.Height)
|
||||||
|
{
|
||||||
|
Logge("Imagegröße kleiner Screenhöhe: " + xMax.ToString());
|
||||||
|
ZielImage.Height = xMax;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Logge("Imagegröße größer Screenhöhe: " + xMax.ToString());
|
||||||
|
ZielImage.Height = imageSCR.Height;
|
||||||
|
}
|
||||||
|
if (xMax < imageSCR.Width)
|
||||||
|
{
|
||||||
|
Logge("Imagegröße kleiner Screenbreite: " + xMax.ToString());
|
||||||
|
ZielImage.Width = xMax;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Logge("Imagegröße größer Screenbreite: " + xMax.ToString());
|
||||||
|
ZielImage.Width = imageSCR.Width;
|
||||||
|
}
|
||||||
|
AniImage(ZielImage);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void LayoutReset()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//Zurück auf Startposition
|
||||||
|
//Zielimage
|
||||||
|
this.imageSCR.Width = this.ActualWidth - 110;
|
||||||
|
this.imageSCR.Height = this.ActualHeight - 110;
|
||||||
|
this.imageSCR.Visibility = Visibility.Hidden;
|
||||||
|
//Zitat
|
||||||
|
this.txtZitat.SetValue(Canvas.LeftProperty, (double)55);
|
||||||
|
this.txtZitat.SetValue(Canvas.TopProperty, (double)110);
|
||||||
|
this.txtZitat.Width = this.ActualWidth - 120;
|
||||||
|
this.txtZitat.Height = this.ActualHeight - 120;
|
||||||
|
this.txtZitat.Visibility = Visibility.Hidden;
|
||||||
|
this.txtZitat.Opacity = 1;
|
||||||
|
//Quellbilder
|
||||||
|
this.image1.Visibility = Visibility.Hidden;
|
||||||
|
this.image1.SetValue(Canvas.LeftProperty, (double)5);
|
||||||
|
this.image1.SetValue(Canvas.TopProperty, (double)5);
|
||||||
|
this.image1.Opacity = 1;
|
||||||
|
this.image2.Visibility = Visibility.Hidden;
|
||||||
|
this.image2.SetValue(Canvas.LeftProperty, (double)5);
|
||||||
|
this.image2.SetValue(Canvas.LeftProperty, (double)this.ActualWidth - 55);
|
||||||
|
this.image2.Opacity = 1;
|
||||||
|
this.image3.Visibility = Visibility.Hidden;
|
||||||
|
this.image3.SetValue(Canvas.LeftProperty, (double)this.ActualHeight - 55);
|
||||||
|
this.image3.SetValue(Canvas.LeftProperty, (double)5);
|
||||||
|
this.image3.Opacity = 1;
|
||||||
|
this.image4.Visibility = Visibility.Hidden;
|
||||||
|
this.image4.SetValue(Canvas.LeftProperty, (double)this.ActualHeight - 55);
|
||||||
|
this.image4.SetValue(Canvas.LeftProperty, (double)this.ActualWidth - 55);
|
||||||
|
this.image4.Opacity = 1;
|
||||||
|
this.image5.Visibility = Visibility.Hidden;
|
||||||
|
this.image5.Opacity = 1;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ZoomAni(Image ZielImage)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//Skalierung XY
|
||||||
|
DoubleAnimation daScaleXY = new DoubleAnimation(0.1, 1, TimeSpan.FromSeconds(5));
|
||||||
|
AnimationClock myClockXY = daScaleXY.CreateClock();
|
||||||
|
ScaleTransform scaleXY = new ScaleTransform(1,1);
|
||||||
|
ZielImage.RenderTransform = scaleXY;
|
||||||
|
//Ecke oben
|
||||||
|
DoubleAnimation daTop = new DoubleAnimation();
|
||||||
|
daTop.Duration = new Duration(TimeSpan.FromSeconds(5));
|
||||||
|
//Ecke Links
|
||||||
|
DoubleAnimation daLeft = new DoubleAnimation();
|
||||||
|
daLeft.Duration = new Duration(TimeSpan.FromSeconds(5));
|
||||||
|
//Opacity
|
||||||
|
DoubleAnimation daOpa = new DoubleAnimation(0.1, 1, TimeSpan.FromSeconds(5));
|
||||||
|
//
|
||||||
|
switch (ZielImage.Name)
|
||||||
|
{
|
||||||
|
case "image1":
|
||||||
|
daTop.From = (double)5;
|
||||||
|
daTop.To = (double)55;
|
||||||
|
daLeft.From = (double)5;
|
||||||
|
daLeft.To = (double)55;
|
||||||
|
break;
|
||||||
|
case "image2":
|
||||||
|
daTop.From = (double)5;
|
||||||
|
daTop.To = (double)55;
|
||||||
|
daLeft.From = (double)(this.ActualWidth - 55);
|
||||||
|
daLeft.To = (double)((this.ActualWidth - ZielImage.Width) / 2);
|
||||||
|
break;
|
||||||
|
case "image3":
|
||||||
|
daTop.From = (double)(this.ActualHeight - 55);
|
||||||
|
daTop.To = (double)((this.ActualHeight - ZielImage.Height) / 2);
|
||||||
|
daLeft.From = (double)5;
|
||||||
|
daLeft.To = (double)55;
|
||||||
|
break;
|
||||||
|
case "image4":
|
||||||
|
daTop.From = (double)this.ActualHeight - 55;
|
||||||
|
daTop.To = (double)((this.ActualHeight - ZielImage.Height) / 2);
|
||||||
|
daLeft.From = (double)(this.ActualWidth - 55);
|
||||||
|
daLeft.To = (double)((this.ActualWidth - ZielImage.Width) / 2);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
//Logge("Top: " + daTop.From.ToString() + " => " + daTop.To.ToString());
|
||||||
|
//Logge("Left: " + daLeft.From.ToString() + " => " + daLeft.To.ToString());
|
||||||
|
//
|
||||||
|
//zur Sicherheit - weil einige Bilder einfach nicht angezeigt werden
|
||||||
|
if (daTop.To > (double)1000) { daTop.To = (double)1; };
|
||||||
|
if (daLeft.To > (double)1000) { daLeft.To = (double)1; };
|
||||||
|
|
||||||
|
Storyboard sb = new Storyboard();
|
||||||
|
sb.Children.Add(daLeft);
|
||||||
|
sb.Children.Add(daTop);
|
||||||
|
//sb.Children.Add(daScaleX);
|
||||||
|
//sb.Children.Add(daScaleY);
|
||||||
|
//
|
||||||
|
sb.Children.Add(daOpa);
|
||||||
|
//
|
||||||
|
Storyboard.SetTargetName(daLeft, ZielImage.Name);
|
||||||
|
Storyboard.SetTargetProperty(daLeft, new PropertyPath(Canvas.LeftProperty));
|
||||||
|
Storyboard.SetTargetName(daTop, ZielImage.Name);
|
||||||
|
Storyboard.SetTargetProperty(daTop, new PropertyPath(Canvas.TopProperty));
|
||||||
|
Storyboard.SetTargetName(daLeft, ZielImage.Name);
|
||||||
|
//Storyboard.SetTargetProperty(daScaleX, new PropertyPath(ScaleTransform.ScaleXProperty));
|
||||||
|
//Storyboard.SetTargetProperty(daScaleY, new PropertyPath(ScaleTransform.ScaleYProperty));
|
||||||
|
//
|
||||||
|
Storyboard.SetTargetProperty(daOpa, new PropertyPath("(Opacity)"));
|
||||||
|
Storyboard.SetTargetName(daOpa, ZielImage.Name);
|
||||||
|
//
|
||||||
|
this.Resources.Clear();
|
||||||
|
this.Resources.Add("ZoomAniImg", sb);
|
||||||
|
//ZielImage.Opacity = 0; //durchsichtig
|
||||||
|
ZielImage.Visibility = Visibility.Visible;
|
||||||
|
sb.Begin();
|
||||||
|
//Logge("StoryboardAnimation gestartet");
|
||||||
|
scaleXY.ApplyAnimationClock(ScaleTransform.ScaleXProperty, myClockXY);
|
||||||
|
scaleXY.ApplyAnimationClock(ScaleTransform.ScaleYProperty, myClockXY);
|
||||||
|
//Logge("AnimationClock gestartet");
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
//LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message,"ZoomAni");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void AniImage(Image ZielImage)
|
||||||
|
{
|
||||||
|
Logge("Ani " + ZielImage.Name);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//in die Mitte
|
||||||
|
ZielImage.SetValue(Canvas.LeftProperty, (double)((this.ActualWidth - ZielImage.Width) / 2));
|
||||||
|
ZielImage.SetValue(Canvas.TopProperty, (double)((this.ActualHeight - ZielImage.Height) / 2));
|
||||||
|
ZielImage.Opacity = 0; //durchsichtig
|
||||||
|
ZielImage.Visibility = Visibility.Visible; //sichtbar - na ja - fast
|
||||||
|
DoubleAnimation da = new DoubleAnimation();
|
||||||
|
da.From = 0;
|
||||||
|
da.To = 1;
|
||||||
|
da.Duration = new Duration(TimeSpan.FromSeconds(7));
|
||||||
|
Storyboard sb = new Storyboard();
|
||||||
|
sb.Children.Add(da);
|
||||||
|
Storyboard.SetTargetName(da, ZielImage.Name);
|
||||||
|
Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)"));
|
||||||
|
this.Resources.Clear();
|
||||||
|
this.Resources.Add("AniImg", sb);
|
||||||
|
sb.Begin();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void ZoomZitatAni()
|
||||||
|
{
|
||||||
|
Logge("Zitat ani ...");
|
||||||
|
try
|
||||||
|
{
|
||||||
|
DoubleAnimation da = new DoubleAnimation();
|
||||||
|
da.From = 0;
|
||||||
|
da.To = 1;
|
||||||
|
da.Duration = new Duration(TimeSpan.FromSeconds(1));
|
||||||
|
Storyboard sb = new Storyboard();
|
||||||
|
sb.Children.Add(da);
|
||||||
|
Storyboard.SetTargetName(da, txtZitat.Name);
|
||||||
|
Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)"));
|
||||||
|
this.Resources.Clear();
|
||||||
|
this.Resources.Add("AniZitat", sb);
|
||||||
|
txtZitat.Visibility = Visibility.Visible;
|
||||||
|
sb.Begin();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ZitatDeAni()
|
||||||
|
{
|
||||||
|
Logge("Zitat de-ani ...");
|
||||||
|
try
|
||||||
|
{
|
||||||
|
DoubleAnimation da = new DoubleAnimation();
|
||||||
|
da.From = 1;
|
||||||
|
da.To = 0;
|
||||||
|
da.Duration = new Duration(TimeSpan.FromSeconds(2));
|
||||||
|
Storyboard sb = new Storyboard();
|
||||||
|
sb.Children.Add(da);
|
||||||
|
Storyboard.SetTargetName(da, txtZitat.Name);
|
||||||
|
Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)"));
|
||||||
|
this.Resources.Clear();
|
||||||
|
this.Resources.Add("DeAniZitat", sb);
|
||||||
|
sb.Begin();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void WinDeAni()
|
||||||
|
{
|
||||||
|
Logge("MainWindow DeAni ...");
|
||||||
|
try
|
||||||
|
{
|
||||||
|
DoubleAnimation da = new DoubleAnimation();
|
||||||
|
da.From = 0;
|
||||||
|
da.To = 1;
|
||||||
|
da.Duration = new Duration(TimeSpan.FromSeconds(2));
|
||||||
|
Storyboard sb = new Storyboard();
|
||||||
|
sb.Children.Add(da);
|
||||||
|
Storyboard.SetTargetName(da, this.Name);
|
||||||
|
Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)"));
|
||||||
|
this.Resources.Clear();
|
||||||
|
this.Resources.Add("DeAniWin", sb);
|
||||||
|
sb.Begin();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private bool LoadZitat()
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string phpUrl = "https://robert.rkaehler.net/kaehler.scr/getZitatTxt.php";
|
||||||
|
string sDummy = LoadTextFromUrl(phpUrl);
|
||||||
|
Logge("Zitat geladen:" + sDummy);
|
||||||
|
if (sDummy.StartsWith("Err:"))
|
||||||
|
{
|
||||||
|
txtZitat.Text = "Fehler beim Zugriff auf die Zitate-Datenbank: \r\n" +
|
||||||
|
sDummy.Substring(5);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
txtZitat.Text = sDummy;
|
||||||
|
int xlen = sDummy.Length;
|
||||||
|
if (xlen > 0)
|
||||||
|
{ return true; }
|
||||||
|
else
|
||||||
|
{ return false; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private double LoadImage(Image ZielImage)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string ImageName = ZielImage.Name.ToString();
|
||||||
|
string BaseName = "https://robert.rkaehler.net/kaehler.scr/getFile_";
|
||||||
|
string DirNum = ImageName.Substring(ImageName.Length - 1);
|
||||||
|
string phpUrl = BaseName + DirNum + ".php";
|
||||||
|
string ImageUrl = LoadTextFromUrl(phpUrl).Replace("\r\n", "");
|
||||||
|
if ((ImageUrl.Length == 0) | (ImageUrl.StartsWith("Err:")))
|
||||||
|
{ return 0; }
|
||||||
|
else
|
||||||
|
{ return LoadImageFromUrl(ZielImage, ImageUrl); }
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void DeAniImage(Image ZielImage)
|
||||||
|
{
|
||||||
|
Logge("DeAni " + ZielImage.Name);
|
||||||
|
try
|
||||||
|
{
|
||||||
|
DoubleAnimation da = new DoubleAnimation();
|
||||||
|
da.From = 1;
|
||||||
|
da.To = 0;
|
||||||
|
da.Duration = new Duration(TimeSpan.FromSeconds(2));
|
||||||
|
Storyboard sb = new Storyboard();
|
||||||
|
sb.Children.Add(da);
|
||||||
|
Storyboard.SetTargetName(da, ZielImage.Name);
|
||||||
|
Storyboard.SetTargetProperty(da, new PropertyPath("(Opacity)"));
|
||||||
|
this.Resources.Clear();
|
||||||
|
this.Resources.Add("DeAniImg", sb);
|
||||||
|
sb.Begin();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private string LoadTextFromUrl(string TextUrl)
|
||||||
|
{
|
||||||
|
int BytesToRead = 100;
|
||||||
|
string sDummy = "";
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//WebRequest request = WebRequest.Create(new Uri(TextUrl, UriKind.Absolute));
|
||||||
|
WebRequest request = WebRequest.Create(TextUrl);
|
||||||
|
request.Timeout = 500;
|
||||||
|
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
|
||||||
|
WebResponse response = request.GetResponse();
|
||||||
|
Console.WriteLine(((HttpWebResponse)response).StatusDescription);
|
||||||
|
Stream responseStream = response.GetResponseStream();
|
||||||
|
BinaryReader reader = new BinaryReader(responseStream);
|
||||||
|
MemoryStream memoryStream = new MemoryStream();
|
||||||
|
byte[] bytebuffer = new byte[BytesToRead];
|
||||||
|
int bytesRead = reader.Read(bytebuffer, 0, BytesToRead);
|
||||||
|
while (bytesRead > 0)
|
||||||
|
{
|
||||||
|
memoryStream.Write(bytebuffer, 0, bytesRead);
|
||||||
|
bytesRead = reader.Read(bytebuffer, 0, BytesToRead);
|
||||||
|
}
|
||||||
|
memoryStream.Seek(0, SeekOrigin.Begin);
|
||||||
|
StreamReader readerTXT = new StreamReader(memoryStream);
|
||||||
|
sDummy = readerTXT.ReadToEnd();
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
sDummy = "Err: " + ex.Message;
|
||||||
|
}
|
||||||
|
return sDummy.Trim();
|
||||||
|
}
|
||||||
|
|
||||||
|
private string getTempPath()
|
||||||
|
{
|
||||||
|
string tempPath = System.IO.Path.GetTempPath();
|
||||||
|
tempPath += "Kaehler.Scr\\";
|
||||||
|
if (!File.Exists(tempPath))
|
||||||
|
{
|
||||||
|
System.IO.Directory.CreateDirectory(tempPath);
|
||||||
|
}
|
||||||
|
return tempPath;
|
||||||
|
}
|
||||||
|
|
||||||
|
private string getTempImgName(string ImageUrl)
|
||||||
|
{
|
||||||
|
string sName = getTempPath();
|
||||||
|
int x1 = ImageUrl.LastIndexOf("/");
|
||||||
|
string sPre = ImageUrl.Substring(x1 - 1, 1) + "_";
|
||||||
|
return sName + sPre + ImageUrl.Substring(x1+1);
|
||||||
|
}
|
||||||
|
|
||||||
|
private double LoadImageFromUrl(Image ZielImage, string ImageUrl)
|
||||||
|
{
|
||||||
|
Logge("LoadImage " + ImageUrl + " => " + ZielImage.Name);
|
||||||
|
double xMax = 0;
|
||||||
|
int BytesToRead = 100;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
BitmapImage tmpImage = new BitmapImage();
|
||||||
|
string sCacheFileName = getTempImgName(ImageUrl);
|
||||||
|
if (!File.Exists(sCacheFileName))
|
||||||
|
{
|
||||||
|
//WebRequest request = WebRequest.Create(new Uri(ImageUrl, UriKind.Absolute));
|
||||||
|
WebRequest request = WebRequest.Create(ImageUrl);
|
||||||
|
request.Timeout = 500;
|
||||||
|
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
|
||||||
|
WebResponse response = request.GetResponse();
|
||||||
|
Stream responseStream = response.GetResponseStream();
|
||||||
|
BinaryReader reader = new BinaryReader(responseStream);
|
||||||
|
MemoryStream memoryStream = new MemoryStream();
|
||||||
|
|
||||||
|
byte[] bytebuffer = new byte[BytesToRead];
|
||||||
|
int bytesRead = reader.Read(bytebuffer, 0, BytesToRead);
|
||||||
|
while (bytesRead > 0)
|
||||||
|
{
|
||||||
|
memoryStream.Write(bytebuffer, 0, bytesRead);
|
||||||
|
bytesRead = reader.Read(bytebuffer, 0, BytesToRead);
|
||||||
|
}
|
||||||
|
tmpImage.BeginInit();
|
||||||
|
memoryStream.Seek(0, SeekOrigin.Begin);
|
||||||
|
tmpImage.StreamSource = memoryStream;
|
||||||
|
tmpImage.EndInit();
|
||||||
|
|
||||||
|
ZielImage.Source = tmpImage;
|
||||||
|
//in den Cache ...
|
||||||
|
FileStream jpgstream = new FileStream(sCacheFileName, FileMode.Create);
|
||||||
|
JpegBitmapEncoder encoder = new JpegBitmapEncoder();
|
||||||
|
encoder.Frames.Add(BitmapFrame.Create(tmpImage));
|
||||||
|
encoder.Save(jpgstream);
|
||||||
|
jpgstream.Flush();
|
||||||
|
jpgstream.Close();
|
||||||
|
//
|
||||||
|
}
|
||||||
|
else //aus dem Cache lesen
|
||||||
|
{
|
||||||
|
tmpImage.BeginInit();
|
||||||
|
tmpImage.UriSource = new Uri(@"file:///" + sCacheFileName, UriKind.RelativeOrAbsolute);
|
||||||
|
tmpImage.EndInit();
|
||||||
|
ZielImage.Source = tmpImage;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tmpImage.Height > tmpImage.Width)
|
||||||
|
{
|
||||||
|
xMax = tmpImage.Height;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
xMax = tmpImage.Width;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LoggeFehler("Fehler in LoadImageFromUrl: " + ex.Message);
|
||||||
|
//MessageBox.Show("Exception in " + ex.Source + ": " + ex.Message);
|
||||||
|
ZielImage.Source = imageBug.Source;
|
||||||
|
xMax = imageBug.Height;
|
||||||
|
}
|
||||||
|
return xMax;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Window_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Window_MouseRightButtonUp(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Window_MouseDoubleClick(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Window_KeyUp(object sender, KeyEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void image1_KeyDown(object sender, KeyEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void image1_MouseDown(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void image1_MouseWheel(object sender, MouseWheelEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void image2_KeyDown(object sender, KeyEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void image2_MouseDown(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void image2_MouseWheel(object sender, MouseWheelEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void txtZitat_MouseDown(object sender, MouseButtonEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void txtZitat_KeyDown(object sender, KeyEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void txtZitat_MouseWheel(object sender, MouseWheelEventArgs e)
|
||||||
|
{
|
||||||
|
SCRBeenden();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SimpleEventLog(String sText, Boolean fErr)
|
||||||
|
{
|
||||||
|
//'Schreibt nur als Information in Anwendungs-Log
|
||||||
|
try
|
||||||
|
{
|
||||||
|
String sBereich = "";
|
||||||
|
if (fErr)
|
||||||
|
{
|
||||||
|
sBereich = "KaehlerSCR-Fehler: ";
|
||||||
|
using (EventLog eventLog = new EventLog("Application"))
|
||||||
|
{
|
||||||
|
eventLog.Source = "Application";
|
||||||
|
eventLog.WriteEntry(sBereich + sText, EventLogEntryType.Error, 102, 2);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sBereich = "KaehlerSCR-Meldung: ";
|
||||||
|
using (EventLog eventLog = new EventLog("Application"))
|
||||||
|
{
|
||||||
|
eventLog.Source = "Application";
|
||||||
|
eventLog.WriteEntry(sText, EventLogEntryType.Information, 101, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//EventLogTraceListener listener = new EventLogTraceListener(sBereich);
|
||||||
|
//Debug.Listeners.Add(listener);
|
||||||
|
//Debug.WriteLine(sText);
|
||||||
|
//listener.Flush();
|
||||||
|
}
|
||||||
|
catch (Exception ignore) {
|
||||||
|
Console.WriteLine("Fehler in SimpleEventLog: " + ignore.Message);
|
||||||
|
Console.WriteLine("Fehler in SimpleEventLog Fehlertext war: " + sText);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Kaehler.scr/apps_bug.png
Normal file
BIN
Kaehler.scr/apps_bug.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
23
Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.deps.json
Normal file
23
Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.deps.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v7.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v7.0": {
|
||||||
|
"Kaehler.scr7/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Kaehler.scr7.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Kaehler.scr7/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.dll
Normal file
BIN
Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.dll
Normal file
Binary file not shown.
BIN
Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.exe
Normal file
BIN
Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.exe
Normal file
Binary file not shown.
BIN
Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.pdb
Normal file
BIN
Kaehler.scr/bin/Debug/net7.0-windows/Kaehler.scr7.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net7.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr
Normal file
BIN
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr
Normal file
Binary file not shown.
23
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.deps.json
Normal file
23
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.deps.json
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v7.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v7.0": {
|
||||||
|
"Kaehler.scr/1.0.0": {
|
||||||
|
"runtime": {
|
||||||
|
"Kaehler.scr.dll": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"Kaehler.scr/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.dll
Normal file
BIN
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.dll
Normal file
Binary file not shown.
BIN
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.exe
Normal file
BIN
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.exe
Normal file
Binary file not shown.
BIN
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.pdb
Normal file
BIN
Kaehler.scr/bin/Release/net7.0-windows/Kaehler.scr.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net7.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Kaehler.scr/icon.ico
Normal file
BIN
Kaehler.scr/icon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 137 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
|
||||||
71
Kaehler.scr/obj/Debug/net6.0-windows/App.g.i.cs
Normal file
71
Kaehler.scr/obj/Debug/net6.0-windows/App.g.i.cs
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DCC59813AB95D23CF72F07367E2D9621042BF6D9"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
using WpfApp1;
|
||||||
|
|
||||||
|
|
||||||
|
namespace WpfApp1 {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// App
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
|
||||||
|
#line 5 "..\..\..\App.xaml"
|
||||||
|
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Application Entry Point.
|
||||||
|
/// </summary>
|
||||||
|
[System.STAThreadAttribute()]
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public static void Main() {
|
||||||
|
WpfApp1.App app = new WpfApp1.App();
|
||||||
|
app.InitializeComponent();
|
||||||
|
app.Run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
76
Kaehler.scr/obj/Debug/net6.0-windows/MainWindow.g.i.cs
Normal file
76
Kaehler.scr/obj/Debug/net6.0-windows/MainWindow.g.i.cs
Normal file
@@ -0,0 +1,76 @@
|
|||||||
|
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "ECDFABC04AE55218F692F255726307C4208DEF2C"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
using WpfApp1;
|
||||||
|
|
||||||
|
|
||||||
|
namespace WpfApp1 {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// MainWindow
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/WpfScr6;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\MainWindow.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
25
Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.AssemblyInfo.cs
Normal file
25
Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.AssemblyInfo.cs
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
d604ad24407ce953817be2036da374ec3791f6f9
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net6.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = WpfApp1
|
||||||
|
build_property.ProjectDir = D:\develop\TestNet6\WpfApp1\WpfApp1\
|
||||||
BIN
Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.assets.cache
Normal file
BIN
Kaehler.scr/obj/Debug/net6.0-windows/WpfApp1.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v6.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v6.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\Robert\\.nuget\\packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
WpfApp1
|
||||||
|
1.0.0.0
|
||||||
|
|
||||||
|
winexe
|
||||||
|
C#
|
||||||
|
.cs
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net6.0-windows\
|
||||||
|
WpfApp1
|
||||||
|
none
|
||||||
|
false
|
||||||
|
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\App.xaml
|
||||||
|
11407045341
|
||||||
|
|
||||||
|
5-1303815099
|
||||||
|
194-2004305220
|
||||||
|
MainWindow.xaml;
|
||||||
|
|
||||||
|
True
|
||||||
|
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
|
||||||
|
FD:\develop\TestNet6\WpfApp1\WpfApp1\MainWindow.xaml;;
|
||||||
|
|
||||||
25
Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.AssemblyInfo.cs
Normal file
25
Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.AssemblyInfo.cs
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfScr6")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("WpfScr6")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("WpfScr6")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
8b6a0db9e025a0f04dda0a5284dc83cd2f311b8b
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.TargetFramework = net6.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = WpfScr6
|
||||||
|
build_property.ProjectDir = D:\develop\TestNet6\WpfApp1\WpfApp1\
|
||||||
BIN
Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.assets.cache
Normal file
BIN
Kaehler.scr/obj/Debug/net6.0-windows/WpfScr6.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v6.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v6.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net6.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "6.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\Robert\\.nuget\\packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
WpfScr6
|
||||||
|
1.0.0.0
|
||||||
|
|
||||||
|
winexe
|
||||||
|
C#
|
||||||
|
.cs
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net6.0-windows\
|
||||||
|
WpfScr6
|
||||||
|
none
|
||||||
|
false
|
||||||
|
TRACE;DEBUG;NET;NET6_0;NETCOREAPP
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\App.xaml
|
||||||
|
11407045341
|
||||||
|
|
||||||
|
5720869822
|
||||||
|
194-2004305220
|
||||||
|
MainWindow.xaml;
|
||||||
|
|
||||||
|
False
|
||||||
|
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
|
||||||
71
Kaehler.scr/obj/Debug/net7.0-windows/App.g.cs
Normal file
71
Kaehler.scr/obj/Debug/net7.0-windows/App.g.cs
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "EEB1500D723CD05C6322ABE2C3E7BB3A06E1D4A1"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Forms.Integration;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kaehler.scr7 {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// App
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
|
||||||
|
#line 4 "..\..\..\App.xaml"
|
||||||
|
this.Startup += new System.Windows.StartupEventHandler(this.Application_Startup);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Application Entry Point.
|
||||||
|
/// </summary>
|
||||||
|
[System.STAThreadAttribute()]
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public static void Main() {
|
||||||
|
Kaehler.scr7.App app = new Kaehler.scr7.App();
|
||||||
|
app.InitializeComponent();
|
||||||
|
app.Run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
71
Kaehler.scr/obj/Debug/net7.0-windows/App.g.i.cs
Normal file
71
Kaehler.scr/obj/Debug/net7.0-windows/App.g.i.cs
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Forms.Integration;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kaehler.scr {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// App
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
|
||||||
|
#line 4 "..\..\..\App.xaml"
|
||||||
|
this.Startup += new System.Windows.StartupEventHandler(this.Application_Startup);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Application Entry Point.
|
||||||
|
/// </summary>
|
||||||
|
[System.STAThreadAttribute()]
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public static void Main() {
|
||||||
|
Kaehler.scr.App app = new Kaehler.scr.App();
|
||||||
|
app.InitializeComponent();
|
||||||
|
app.Run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
25
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.AssemblyInfo.cs
Normal file
25
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.AssemblyInfo.cs
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Kaehler")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Kaehler")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Kaehler")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
3a9e4de228511460d97e757451226809964fc0e0
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.ApplicationManifest =
|
||||||
|
build_property.StartupObject =
|
||||||
|
build_property.ApplicationDefaultFont =
|
||||||
|
build_property.ApplicationHighDpiMode =
|
||||||
|
build_property.ApplicationUseCompatibleTextRendering =
|
||||||
|
build_property.ApplicationVisualStyles =
|
||||||
|
build_property.TargetFramework = net7.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = Kaehler
|
||||||
|
build_property.ProjectDir = D:\develop\TestNet6\WpfApp1\WpfApp1\
|
||||||
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.assets.cache
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v7.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v7.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net7.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\Robert\\.nuget\\packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Kaehler.scr")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Kaehler.scr")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Kaehler.scr")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
34da4b791e7718163d18b3313dff15be1443ca85
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.ApplicationManifest =
|
||||||
|
build_property.StartupObject =
|
||||||
|
build_property.ApplicationDefaultFont =
|
||||||
|
build_property.ApplicationHighDpiMode =
|
||||||
|
build_property.ApplicationUseCompatibleTextRendering =
|
||||||
|
build_property.ApplicationVisualStyles =
|
||||||
|
build_property.TargetFramework = net7.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = Kaehler.scr
|
||||||
|
build_property.ProjectDir = \\NAS\Test\src\Kaehler.scr\
|
||||||
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.assets.cache
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Kaehler.scr7")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("Kaehler.scr7")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("Kaehler.scr7")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
712c950c30d0bb2966136d9e3a93b2dccc3f6230
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.ApplicationManifest =
|
||||||
|
build_property.StartupObject =
|
||||||
|
build_property.ApplicationDefaultFont =
|
||||||
|
build_property.ApplicationHighDpiMode =
|
||||||
|
build_property.ApplicationUseCompatibleTextRendering =
|
||||||
|
build_property.ApplicationVisualStyles =
|
||||||
|
build_property.TargetFramework = net7.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = Kaehler.scr7
|
||||||
|
build_property.ProjectDir = D:\develop\Scr.Net7\WpfApp1\WpfApp1\
|
||||||
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.assets.cache
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
a63f9e90857a6f37f4abc864d1085ca35d533c8a
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.csproj.AssemblyReference.cache
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.baml
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.g.cs
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7_MarkupCompile.cache
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.exe
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.deps.json
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.runtimeconfig.json
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.dll
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.pdb
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\App.g.cs
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.g.resources
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.AssemblyInfoInputs.cache
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.AssemblyInfo.cs
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.csproj.CoreCompileInputs.cache
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.dll
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\refint\Kaehler.scr7.dll
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.pdb
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.genruntimeconfig.cache
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\ref\Kaehler.scr7.dll
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.exe
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.deps.json
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.runtimeconfig.json
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.dll
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\bin\Debug\net7.0-windows\Kaehler.scr7.pdb
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.csproj.AssemblyReference.cache
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.baml
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.g.cs
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\App.g.cs
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7_MarkupCompile.cache
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.g.resources
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.AssemblyInfoInputs.cache
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.AssemblyInfo.cs
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.csproj.CoreCompileInputs.cache
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.dll
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\refint\Kaehler.scr7.dll
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.pdb
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\Kaehler.scr7.genruntimeconfig.cache
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\ref\Kaehler.scr7.dll
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v7.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v7.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net7.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\Robert\\.nuget\\packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.dll
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.dll
Normal file
Binary file not shown.
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.g.resources
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.g.resources
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
9c30b72a27738fc26f056382570e2c7b32d08e2a
|
||||||
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.pdb
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/Kaehler.scr7.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,20 @@
|
|||||||
|
Kaehler.scr7
|
||||||
|
|
||||||
|
|
||||||
|
winexe
|
||||||
|
C#
|
||||||
|
.cs
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\
|
||||||
|
Kaehler.scr7
|
||||||
|
none
|
||||||
|
false
|
||||||
|
TRACE;DEBUG;NET;NET7_0;NETCOREAPP
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\App.xaml
|
||||||
|
11407045341
|
||||||
|
|
||||||
|
3-1233169557
|
||||||
|
2071328265475
|
||||||
|
MainWindow.xaml;
|
||||||
|
|
||||||
|
False
|
||||||
|
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
Kaehler.scr7
|
||||||
|
1.0.0.0
|
||||||
|
|
||||||
|
winexe
|
||||||
|
C#
|
||||||
|
.cs
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\
|
||||||
|
Kaehler.scr7
|
||||||
|
none
|
||||||
|
false
|
||||||
|
TRACE;DEBUG;NET;NET7_0;NETCOREAPP
|
||||||
|
D:\develop\Scr.Net7\WpfApp1\WpfApp1\App.xaml
|
||||||
|
11407045341
|
||||||
|
|
||||||
|
51690473318
|
||||||
|
2071328265475
|
||||||
|
MainWindow.xaml;
|
||||||
|
|
||||||
|
False
|
||||||
|
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
Kaehler.scr
|
||||||
|
1.0.0.0
|
||||||
|
|
||||||
|
winexe
|
||||||
|
C#
|
||||||
|
.cs
|
||||||
|
\\NAS\Test\src\Kaehler.scr\obj\Debug\net7.0-windows\
|
||||||
|
Kaehler.scr
|
||||||
|
none
|
||||||
|
false
|
||||||
|
TRACE;DEBUG;NET;NET7_0;NETCOREAPP
|
||||||
|
\\NAS\Test\src\Kaehler.scr\App.xaml
|
||||||
|
11407045341
|
||||||
|
|
||||||
|
5-436064168
|
||||||
|
2071328265475
|
||||||
|
MainWindow.xaml;
|
||||||
|
|
||||||
|
False
|
||||||
|
|
||||||
BIN
Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.baml
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.baml
Normal file
Binary file not shown.
255
Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.cs
Normal file
255
Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.cs
Normal file
@@ -0,0 +1,255 @@
|
|||||||
|
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "93A51A305089CADBE355CABAC2AE31BC2D6D4D2F"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Forms.Integration;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kaehler.scr7 {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// MainWindow
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal Kaehler.scr7.MainWindow ScrWindow;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 17 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Canvas scrcanvas;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 18 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image1;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 19 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 20 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image imageSCR;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 21 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image3;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 22 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image4;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 23 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image5;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 24 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.TextBlock txtZitat;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 25 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image imageBug;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Kaehler.scr7;component/mainwindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\MainWindow.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
switch (connectionId)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
this.ScrWindow = ((Kaehler.scr7.MainWindow)(target));
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseLeftButtonUp);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.MouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseRightButtonUp);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseDoubleClick);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.KeyUp += new System.Windows.Input.KeyEventHandler(this.Window_KeyUp);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 2:
|
||||||
|
this.scrcanvas = ((System.Windows.Controls.Canvas)(target));
|
||||||
|
return;
|
||||||
|
case 3:
|
||||||
|
this.image1 = ((System.Windows.Controls.Image)(target));
|
||||||
|
|
||||||
|
#line 18 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image1.KeyDown += new System.Windows.Input.KeyEventHandler(this.image1_KeyDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 18 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image1.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.image1_MouseDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 18 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image1.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.image1_MouseWheel);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 4:
|
||||||
|
this.image2 = ((System.Windows.Controls.Image)(target));
|
||||||
|
|
||||||
|
#line 19 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image2.KeyDown += new System.Windows.Input.KeyEventHandler(this.image2_KeyDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 19 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image2.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.image2_MouseDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 19 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image2.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.image2_MouseWheel);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 5:
|
||||||
|
this.imageSCR = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
case 6:
|
||||||
|
this.image3 = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
case 7:
|
||||||
|
this.image4 = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
case 8:
|
||||||
|
this.image5 = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
case 9:
|
||||||
|
this.txtZitat = ((System.Windows.Controls.TextBlock)(target));
|
||||||
|
return;
|
||||||
|
case 10:
|
||||||
|
this.imageBug = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
255
Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.i.cs
Normal file
255
Kaehler.scr/obj/Debug/net7.0-windows/MainWindow.g.i.cs
Normal file
@@ -0,0 +1,255 @@
|
|||||||
|
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C3131CA9D1D870DA4B119BE63646BE33A34F0527"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Forms.Integration;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kaehler.scr {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// MainWindow
|
||||||
|
/// </summary>
|
||||||
|
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
|
||||||
|
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal Kaehler.scr.MainWindow ScrWindow;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 17 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Canvas scrcanvas;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 18 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image1;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 19 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image2;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 20 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image imageSCR;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 21 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image3;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 22 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image4;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 23 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image image5;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 24 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.TextBlock txtZitat;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
|
||||||
|
#line 25 "..\..\..\MainWindow.xaml"
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
|
||||||
|
internal System.Windows.Controls.Image imageBug;
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
private bool _contentLoaded;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
if (_contentLoaded) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_contentLoaded = true;
|
||||||
|
System.Uri resourceLocater = new System.Uri("/Kaehler.scr;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative);
|
||||||
|
|
||||||
|
#line 1 "..\..\..\MainWindow.xaml"
|
||||||
|
System.Windows.Application.LoadComponent(this, resourceLocater);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
|
||||||
|
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
|
||||||
|
switch (connectionId)
|
||||||
|
{
|
||||||
|
case 1:
|
||||||
|
this.ScrWindow = ((Kaehler.scr.MainWindow)(target));
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.MouseLeftButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseLeftButtonUp);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.MouseRightButtonUp += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseRightButtonUp);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(this.Window_MouseDoubleClick);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.KeyUp += new System.Windows.Input.KeyEventHandler(this.Window_KeyUp);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 4 "..\..\..\MainWindow.xaml"
|
||||||
|
this.ScrWindow.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 2:
|
||||||
|
this.scrcanvas = ((System.Windows.Controls.Canvas)(target));
|
||||||
|
return;
|
||||||
|
case 3:
|
||||||
|
this.image1 = ((System.Windows.Controls.Image)(target));
|
||||||
|
|
||||||
|
#line 18 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image1.KeyDown += new System.Windows.Input.KeyEventHandler(this.image1_KeyDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 18 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image1.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.image1_MouseDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 18 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image1.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.image1_MouseWheel);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 4:
|
||||||
|
this.image2 = ((System.Windows.Controls.Image)(target));
|
||||||
|
|
||||||
|
#line 19 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image2.KeyDown += new System.Windows.Input.KeyEventHandler(this.image2_KeyDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 19 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image2.MouseDown += new System.Windows.Input.MouseButtonEventHandler(this.image2_MouseDown);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
|
||||||
|
#line 19 "..\..\..\MainWindow.xaml"
|
||||||
|
this.image2.MouseWheel += new System.Windows.Input.MouseWheelEventHandler(this.image2_MouseWheel);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
return;
|
||||||
|
case 5:
|
||||||
|
this.imageSCR = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
case 6:
|
||||||
|
this.image3 = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
case 7:
|
||||||
|
this.image4 = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
case 8:
|
||||||
|
this.image5 = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
case 9:
|
||||||
|
this.txtZitat = ((System.Windows.Controls.TextBlock)(target));
|
||||||
|
return;
|
||||||
|
case 10:
|
||||||
|
this.imageBug = ((System.Windows.Controls.Image)(target));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this._contentLoaded = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
25
Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.AssemblyInfo.cs
Normal file
25
Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.AssemblyInfo.cs
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("WpfScr6")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("WpfScr6")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("WpfScr6")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
8b6a0db9e025a0f04dda0a5284dc83cd2f311b8b
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.ApplicationManifest =
|
||||||
|
build_property.StartupObject =
|
||||||
|
build_property.ApplicationDefaultFont =
|
||||||
|
build_property.ApplicationHighDpiMode =
|
||||||
|
build_property.ApplicationUseCompatibleTextRendering =
|
||||||
|
build_property.ApplicationVisualStyles =
|
||||||
|
build_property.TargetFramework = net7.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = WpfScr6
|
||||||
|
build_property.ProjectDir = D:\develop\TestNet6\WpfApp1\WpfApp1\
|
||||||
BIN
Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.assets.cache
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/WpfScr6.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,10 @@
|
|||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.csproj.AssemblyReference.cache
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.baml
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\MainWindow.g.cs
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\App.g.cs
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6_MarkupCompile.cache
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.g.resources
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.AssemblyInfoInputs.cache
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.AssemblyInfo.cs
|
||||||
|
D:\develop\TestNet6\WpfApp1\WpfApp1\obj\Debug\net7.0-windows\WpfScr6.csproj.CoreCompileInputs.cache
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v7.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v7.0": {}
|
||||||
|
},
|
||||||
|
"libraries": {}
|
||||||
|
}
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net7.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "7.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"additionalProbingPaths": [
|
||||||
|
"C:\\Users\\Robert\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
|
"C:\\Users\\Robert\\.nuget\\packages",
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
1
Kaehler.scr/obj/Debug/net7.0-windows/_IsIncrementalBuild
Normal file
1
Kaehler.scr/obj/Debug/net7.0-windows/_IsIncrementalBuild
Normal file
@@ -0,0 +1 @@
|
|||||||
|
obj\Debug\net7.0-windows\\_IsIncrementalBuild
|
||||||
BIN
Kaehler.scr/obj/Debug/net7.0-windows/apphost.exe
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/apphost.exe
Normal file
Binary file not shown.
BIN
Kaehler.scr/obj/Debug/net7.0-windows/ref/Kaehler.scr7.dll
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/ref/Kaehler.scr7.dll
Normal file
Binary file not shown.
BIN
Kaehler.scr/obj/Debug/net7.0-windows/refint/Kaehler.scr7.dll
Normal file
BIN
Kaehler.scr/obj/Debug/net7.0-windows/refint/Kaehler.scr7.dll
Normal file
Binary file not shown.
71
Kaehler.scr/obj/Kaehler.csproj.nuget.dgspec.json
Normal file
71
Kaehler.scr/obj/Kaehler.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\Kaehler.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\Kaehler.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\Kaehler.csproj",
|
||||||
|
"projectName": "Kaehler",
|
||||||
|
"projectPath": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\Kaehler.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Robert\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\develop\\TestNet6\\WpfApp1\\WpfApp1\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Robert\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net7.0-windows"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0-windows7.0": {
|
||||||
|
"targetAlias": "net7.0-windows",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0-windows7.0": {
|
||||||
|
"targetAlias": "net7.0-windows",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
},
|
||||||
|
"Microsoft.WindowsDesktop.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
Kaehler.scr/obj/Kaehler.csproj.nuget.g.props
Normal file
16
Kaehler.scr/obj/Kaehler.csproj.nuget.g.props
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Robert\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
2
Kaehler.scr/obj/Kaehler.csproj.nuget.g.targets
Normal file
2
Kaehler.scr/obj/Kaehler.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||||
71
Kaehler.scr/obj/Kaehler.scr.csproj.nuget.dgspec.json
Normal file
71
Kaehler.scr/obj/Kaehler.scr.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"T:\\src\\Kaehler.scr\\Kaehler.scr.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"T:\\src\\Kaehler.scr\\Kaehler.scr.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "T:\\src\\Kaehler.scr\\Kaehler.scr.csproj",
|
||||||
|
"projectName": "Kaehler.scr",
|
||||||
|
"projectPath": "T:\\src\\Kaehler.scr\\Kaehler.scr.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Robert\\.nuget\\packages\\",
|
||||||
|
"outputPath": "T:\\src\\Kaehler.scr\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Robert\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net7.0-windows"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0-windows7.0": {
|
||||||
|
"targetAlias": "net7.0-windows",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0-windows7.0": {
|
||||||
|
"targetAlias": "net7.0-windows",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
},
|
||||||
|
"Microsoft.WindowsDesktop.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.props
Normal file
16
Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.props
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Robert\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
2
Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.targets
Normal file
2
Kaehler.scr/obj/Kaehler.scr.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||||
71
Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.dgspec.json
Normal file
71
Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
{
|
||||||
|
"format": 1,
|
||||||
|
"restore": {
|
||||||
|
"D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\Kaehler.scr7.csproj": {}
|
||||||
|
},
|
||||||
|
"projects": {
|
||||||
|
"D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\Kaehler.scr7.csproj": {
|
||||||
|
"version": "1.0.0",
|
||||||
|
"restore": {
|
||||||
|
"projectUniqueName": "D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\Kaehler.scr7.csproj",
|
||||||
|
"projectName": "Kaehler.scr7",
|
||||||
|
"projectPath": "D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\Kaehler.scr7.csproj",
|
||||||
|
"packagesPath": "C:\\Users\\Robert\\.nuget\\packages\\",
|
||||||
|
"outputPath": "D:\\develop\\Scr.Net7\\WpfApp1\\WpfApp1\\obj\\",
|
||||||
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
|
"configFilePaths": [
|
||||||
|
"C:\\Users\\Robert\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
|
],
|
||||||
|
"originalTargetFrameworks": [
|
||||||
|
"net7.0-windows"
|
||||||
|
],
|
||||||
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0-windows7.0": {
|
||||||
|
"targetAlias": "net7.0-windows",
|
||||||
|
"projectReferences": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"warningProperties": {
|
||||||
|
"warnAsError": [
|
||||||
|
"NU1605"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"frameworks": {
|
||||||
|
"net7.0-windows7.0": {
|
||||||
|
"targetAlias": "net7.0-windows",
|
||||||
|
"imports": [
|
||||||
|
"net461",
|
||||||
|
"net462",
|
||||||
|
"net47",
|
||||||
|
"net471",
|
||||||
|
"net472",
|
||||||
|
"net48",
|
||||||
|
"net481"
|
||||||
|
],
|
||||||
|
"assetTargetFallback": true,
|
||||||
|
"warn": true,
|
||||||
|
"frameworkReferences": {
|
||||||
|
"Microsoft.NETCore.App": {
|
||||||
|
"privateAssets": "all"
|
||||||
|
},
|
||||||
|
"Microsoft.WindowsDesktop.App": {
|
||||||
|
"privateAssets": "none"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
16
Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.props
Normal file
16
Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.props
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Robert\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.4.0</NuGetToolVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
|
<SourceRoot Include="C:\Users\Robert\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
2
Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.targets
Normal file
2
Kaehler.scr/obj/Kaehler.scr7.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
|
||||||
71
Kaehler.scr/obj/Release/net7.0-windows/App.g.cs
Normal file
71
Kaehler.scr/obj/Release/net7.0-windows/App.g.cs
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Forms.Integration;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kaehler.scr {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// App
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
|
||||||
|
#line 4 "..\..\..\App.xaml"
|
||||||
|
this.Startup += new System.Windows.StartupEventHandler(this.Application_Startup);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Application Entry Point.
|
||||||
|
/// </summary>
|
||||||
|
[System.STAThreadAttribute()]
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public static void Main() {
|
||||||
|
Kaehler.scr.App app = new Kaehler.scr.App();
|
||||||
|
app.InitializeComponent();
|
||||||
|
app.Run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
71
Kaehler.scr/obj/Release/net7.0-windows/App.g.i.cs
Normal file
71
Kaehler.scr/obj/Release/net7.0-windows/App.g.i.cs
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "2DD7FC33A3CE500D190B4A571E6518917F50176C"
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Automation;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Controls.Primitives;
|
||||||
|
using System.Windows.Controls.Ribbon;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Forms.Integration;
|
||||||
|
using System.Windows.Ink;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Markup;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Animation;
|
||||||
|
using System.Windows.Media.Effects;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Media.Media3D;
|
||||||
|
using System.Windows.Media.TextFormatting;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
using System.Windows.Shell;
|
||||||
|
|
||||||
|
|
||||||
|
namespace Kaehler.scr {
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// App
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : System.Windows.Application {
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// InitializeComponent
|
||||||
|
/// </summary>
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public void InitializeComponent() {
|
||||||
|
|
||||||
|
#line 4 "..\..\..\App.xaml"
|
||||||
|
this.Startup += new System.Windows.StartupEventHandler(this.Application_Startup);
|
||||||
|
|
||||||
|
#line default
|
||||||
|
#line hidden
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Application Entry Point.
|
||||||
|
/// </summary>
|
||||||
|
[System.STAThreadAttribute()]
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "7.0.0.0")]
|
||||||
|
public static void Main() {
|
||||||
|
Kaehler.scr.App app = new Kaehler.scr.App();
|
||||||
|
app.InitializeComponent();
|
||||||
|
app.Run();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user