mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-25 02:01:28 -05:00
* Add GUIConsole sample * Remove acrylic native functions, add a title bar * Fix WPF app namespaces * Respond to PR feedback * Removed unused native calls, and fix up some stray spaces * Switch pwsh to powershell * Missed a spot. * Fix typo, add newlines
16 lines
228 B
C#
16 lines
228 B
C#
using System.Windows;
|
|
|
|
namespace GUIConsole.Wpf
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for App.xaml
|
|
/// </summary>
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|