Gtk4DotNet 6.1.0

dotnet add package Gtk4DotNet --version 6.1.0
NuGet\Install-Package Gtk4DotNet -Version 6.1.0
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="Gtk4DotNet" Version="6.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Gtk4DotNet --version 6.1.0
#r "nuget: Gtk4DotNet, 6.1.0"
#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.
// Install Gtk4DotNet as a Cake Addin
#addin nuget:?package=Gtk4DotNet&version=6.1.0

// Install Gtk4DotNet as a Cake Tool
#tool nuget:?package=Gtk4DotNet&version=6.1.0

Gtk4DotNet

.Net 8 bindings for GTK 4

Gtk4DotNet uses a functional declarative approach to GTK4 similar to REACT or Kotlin Compose:

return Application
    .New("org.gtk.example")
    .OnActivate(app => 
        app
            .NewWindow()
            .Title("Hello Gtk👍")
            .SideEffect(win => win
            .Child(
                Grid
                    .New()
                    .Attach(                                
                        Button
                            .NewWithLabel("Button 1")
                            .OnClicked(() => WriteLine("Button1 clicked")), 0, 0, 1, 1)
                    .Attach(                                
                        Button
                            .NewWithLabel("Button 2")
                            .OnClicked(() => WriteLine("Button2 clicked")), 1, 0, 1, 1)
                    .Attach(                                
                        Button
                            .NewWithLabel("Quit")
                            .OnClicked(() => win.CloseWindow()), 0, 1, 2, 1)))
            .Show())
    .Run(0, IntPtr.Zero);
}

You don't have to use window.ui XML files for describing the UI, instead declare the UI declarative with C#.

Contained in this Repo are samples how to use Gtk4DotNet. All examples of the official GTK4 are transformed to C# with Gtk4DotNet.

Prerequisites

Necessary only depending on the version of Linux

if you want to use WebView (WebKitGTK) on Ubuntu 22.04:

  • sudo apt install libwebkitgtk-6.0-dev

With LibAdwaita

  • sudo apt install libadwaita-1-dev

Gtk4

  • sudo apt install libgtk-4-dev

If you want to use GTK resources

  • sudo apt install libglib2.0-dev-bin

Installation of GTK Schema

    sudo install -D ./Test/org.gtk.example.gschema.xml /usr/share/glib-2.0/schemas/
    sudo glib-compile-schemas /usr/share/glib-2.0/schemas/

Usage

Look at the sample programs (https://github.com/uriegel/Gtk4DotNet/tree/Main/Test)

Checking if memory is being freed

To check if GObjects are being freed, just run

Widget.AddWeakRef(() => Console.WriteLine("... is being freed));

If this object is finalized, then the callback will be called.

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

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Gtk4DotNet:

Package Downloads
WebWindowNetCore.Linux

A C# Webview Application for Linux similar to Electron based on GTK WebKit

Gtk4DotNet.FSharp

.NET 8 F# Bindings for GTK 4, functional declarative similar to REACT or Kotlin Compose

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.1.0 89 4/29/2024
6.0.0 86 4/27/2024
5.4.0 103 4/20/2024
5.3.11 81 4/20/2024
5.3.10 75 4/20/2024
5.3.9 87 4/19/2024
5.3.8 98 3/26/2024
5.3.7 116 3/13/2024
5.3.6 146 1/20/2024
5.3.5 84 1/20/2024
5.3.4 124 1/7/2024
5.3.3 120 1/3/2024
5.3.2 110 1/2/2024
5.3.1 95 1/2/2024
5.3.0 103 1/2/2024
5.2.0 112 12/22/2023
5.1.0 97 12/22/2023
5.0.0 151 12/14/2023
4.0.0 93 12/13/2023
3.4.0 96 12/10/2023
3.3.1 97 12/10/2023
3.3.0 88 12/10/2023
3.2.0 90 12/9/2023
3.1.1 94 12/9/2023
3.1.0 92 12/9/2023
3.0.0 107 12/9/2023
2.0.0 107 11/28/2023
1.4.0 148 11/17/2023
1.3.3 79 11/16/2023
1.3.2 99 11/16/2023
1.3.1 95 11/16/2023
1.3.0 104 11/16/2023
1.2.1 116 10/29/2023
1.2.0 112 10/22/2023
1.1.0 159 4/24/2023
1.0.0 138 4/23/2023

Stateful actions