VOOZH about

URL: https://www.nuget.org/packages/AvaloniaHex/

⇱ NuGet Gallery | AvaloniaHex 0.1.13




AvaloniaHex 0.1.13

dotnet add package AvaloniaHex --version 0.1.13
 
 
NuGet\Install-Package AvaloniaHex -Version 0.1.13
 
 
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="AvaloniaHex" Version="0.1.13" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AvaloniaHex" Version="0.1.13" />
 
Directory.Packages.props
<PackageReference Include="AvaloniaHex" />
 
Project file
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 AvaloniaHex --version 0.1.13
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: AvaloniaHex, 0.1.13"
 
 
#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 AvaloniaHex@0.1.13
 
 
#: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=AvaloniaHex&version=0.1.13
 
Install as a Cake Addin
#tool nuget:?package=AvaloniaHex&version=0.1.13
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

AvaloniaHex

This is a(n experimental) hex editor control for the Avalonia UI framework.

Features

  • Display binary data in hex, binary, and ASCII. Extensible with custom column rendering.
  • Adjust the displayed bytes per line manually or automatically.
  • Modify binary documents in-place or resize documents dynamically.
  • Support for documents with non-contiguous backing buffers and/or non-zero base addresses. Useful for documents with "gaps" (e.g., memory views).
  • Many style customization options available with default Light and Dark themes.
  • Custom syntax (byte) highlighting.
  • Support for memory mapped files.

Binaries

Quick Start Guide

After installing the AvaloniaHex dependency, add the default control styles to your App.axaml:

<Application xmlns="https://github.com/avaloniaui" ... >
 <Application.Styles>
 ...
 <StyleInclude Source="avares://AvaloniaHex/Themes/Simple/AvaloniaHex.axaml"/>
 </Application.Styles>
</Application>

Then, add the HexEditor control to your window:

<Window
 xmlns:avaloniaHex="clr-namespace:AvaloniaHex;assembly=AvaloniaHex"
 xmlns:rendering="clr-namespace:AvaloniaHex.Rendering;assembly=AvaloniaHex"
 ...>
 
 <avaloniaHex:HexEditor FontFamily="Cascadia Code,JetBrains Mono,Monospace,monospace">
 
 <avaloniaHex:HexEditor.Columns>
 <rendering:OffsetColumn />
 <rendering:HexColumn />
 <rendering:AsciiColumn />
 </avaloniaHex:HexEditor.Columns>
 </avaloniaHex:HexEditor>

</Window>

To display a file in the control, assign the Document property:

HexEditor editor = ...;

editor.Document = new MemoryBinaryDocument(File.ReadAllBytes(@"C:\Path\To\File.bin"));

See for more details.

License

MIT

Product Versions Compatible and additional computed target framework versions.
.NET net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on AvaloniaHex:

Package Downloads
Spice86

Reverse engineer and rewrite real mode dos programs

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on AvaloniaHex:

Repository Stars
timschneeb/GalaxyBudsClient
Unofficial Galaxy Buds Manager for Windows, macOS, Linux, and Android
OpenRakis/Spice86
Reverse engineer and rewrite real mode DOS programs!
openmcdf/openmcdf
Microsoft Compound File .net component - pure C# - netstandard 2.0
Version Downloads Last Updated
0.1.13 3,305 4/18/2026
0.1.12 3,477 3/7/2026
0.1.11 3,017 12/28/2025
0.1.10 12,353 9/14/2025
0.1.9 851 7/21/2025
0.1.8 6,842 3/12/2025
0.1.7 812 3/1/2025
0.1.6 1,580 12/15/2024
0.1.5 770 11/11/2024
0.1.4 774 10/26/2024
0.1.3 5,098 7/7/2024
0.1.2 678 6/22/2024
0.1.1 1,777 4/18/2024
0.1.0 2,965 3/21/2024