View PlGroup Sonstiges
ID | 20 |
---|---|
Text | Sonstiges |
Title | Not set |
PlItems
- #!/bin/sh # Einfaches Beispiel ...
- public MainWindow() { var newThread = new System.Threading.Thread(doMethode); newThread.Start("Hallo Welt!"); } private void doMethode(object message) { Console.WriteLine(message); }
- inputBox.BorderBrush = new BrushConverter().ConvertFromString("#FF7F9DB9") as SolidColorBrush;
- public void StartApp(string filePath, string arguments) { var newProcess = new Process(); newProcess.StartInfo.FileName = filePath; newProcess.StartInfo.Arguments = arguments; newProcess.Start(); }
- Process.Start("Programm.exe");
- Console.WriteLine(AppDomain.CurrentDomain.BaseDirectory);
- Application.Current.Shutdown();
- void RestartApplication() { string[] FullNameSplit = Application.ResourceAssembly.FullName.Split((char)44); Process.Start(FullNameSplit[0] + ".exe"); Application.Current.Shutdown(); }
- private string GetApplicationVersion() { string[] FullNameSplit = Application.ResourceAssembly.FullName.Split((char)44); return FullNameSplit[1].Replace("Version=", string.Empty).Trim(); }
- string sysTempPath = System.IO.Path.GetTempPath();
- Clipboard.SetText("Text..."); string myString = Clipboard.GetText();
- <link rel="alternate" type="application/rss+xml" title="RSS Feed" href="Feed-URL"/>