Orthogonal.NTagLite.Controls
1.0.3
dotnet add package Orthogonal.NTagLite.Controls --version 1.0.3
NuGet\Install-Package Orthogonal.NTagLite.Controls -Version 1.0.3
<PackageReference Include="Orthogonal.NTagLite.Controls" Version="1.0.3" />
paket add Orthogonal.NTagLite.Controls --version 1.0.3
#r "nuget: Orthogonal.NTagLite.Controls, 1.0.3"
// Install Orthogonal.NTagLite.Controls as a Cake Addin #addin nuget:?package=Orthogonal.NTagLite.Controls&version=1.0.3 // Install Orthogonal.NTagLite.Controls as a Cake Tool #tool nuget:?package=Orthogonal.NTagLite.Controls&version=1.0.3
The Orthogonal.NTagLite.Controls project contains WPF controls for editing ID3 tags which are commonly used to embed metadata in mp3 audio files. This library has a dependency on the Orthogonal.NTagLite library which parses and updates ID3 tags.
Full source code is available in the Azure DevOps Repository.
The library is somewhat experimental and was created by extracting the editor control from the TagSheet application so it could be reused in other projects. The editor is the only control in the library at the moment, but others may be added later.
The usage pattern is as follows:
using Orthogonal.NTagLite;
using Orthogonal.NTagLite.Controls;
:
LifeFile lf = LiteFile.LoadFromFile(@"C:\testdata\Test Song.mp3");
var dialog = new TagEditWindow(lf);
dialog.Owner = this;
if (dialog.ShowDialog() == true)
{
// The dialog has updated the tag and its frames
lf.UpdateFile();
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0-windows7.0 is compatible. net7.0-windows was computed. net8.0-windows was computed. net8.0-windows7.0 is compatible. |
-
net6.0-windows7.0
- DotNetProjects.Extended.Wpf.Toolkit (>= 5.0.113)
- Orthogonal.NTagLite (>= 3.0.4)
-
net8.0-windows7.0
- DotNetProjects.Extended.Wpf.Toolkit (>= 5.0.113)
- Orthogonal.NTagLite (>= 3.0.4)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.3 | 195 | 12/20/2023 |
Target net60 and net80 windows. No code changes.