WpfTerminal 0.9.6.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package WpfTerminal --version 0.9.6.1
NuGet\Install-Package WpfTerminal -Version 0.9.6.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WpfTerminal" Version="0.9.6.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WpfTerminal" Version="0.9.6.1" />
<PackageReference Include="WpfTerminal" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add WpfTerminal --version 0.9.6.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: WpfTerminal, 0.9.6.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package WpfTerminal@0.9.6.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=WpfTerminal&version=0.9.6.1
#tool nuget:?package=WpfTerminal&version=0.9.6.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
WpfTerminal
A dockable WPF terminal emulator UserControl for .NET 8.
Features
- Multi-tab Shell Sessions — cmd, PowerShell, bash, Git Bash
- 39 Built-in Commands — file I/O, navigation, hex access, solution, plugins, diagnostics
- Macro Recording/Replay — record command sequences, replay with variables
- HxScript Scripting — lightweight
.hxscriptscripting engine for automation - Command History — per-session history with up/down navigation
- Find in Output — search through terminal output with highlight
- Export — save output to text or HTML
- Themeable — uses WPF DynamicResources for seamless dark/light themes
- MVVM Architecture — clean separation of UI and logic
Quick Start
<Window xmlns:term="clr-namespace:WpfHexEditor.Terminal;assembly=WpfHexEditor.Terminal">
<term:TerminalPanel x:Name="Terminal" />
</Window>
// Add a new PowerShell session
Terminal.ViewModel.AddSession("PowerShell", TerminalShellType.PowerShell);
// Execute a command programmatically
await Terminal.ViewModel.ActiveSession.ExecuteCommandAsync("Get-Process");
Built-in Commands (selection)
| Command | Description |
|---|---|
cd <path> |
Change directory |
ls / dir |
List files |
cat <file> |
Display file content |
find <pattern> |
Search in files |
clear |
Clear output |
macro record |
Start recording |
macro play |
Replay recorded macro |
help |
List all commands |
Included Assemblies
| Assembly | Description |
|---|---|
| WpfHexEditor.Terminal | WPF terminal panel (MVVM) |
| WpfHexEditor.Core.Terminal | Command engine, macros, scripting |
| WpfHexEditor.SDK | Plugin contracts |
Installation
dotnet add package WpfTerminal
License
GNU AGPL v3.0 — GitHub Repository
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0-windows7.0 is compatible. net9.0-windows was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0-windows7.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.