Click here to Skip to main content
15,898,371 members
Everything / Gtk#

Gtk#

Gtk#

Great Reads

Latest Articles

All Articles

Sort by Score

Gtk# 

4 Dec 2013 by Sergey Alexandrovich Kryukov
This topic is pretty much unrelated to Mono. Mac OS X has its own installation subsystem and format of installation packages. This answer quickly reviews some tools and basic documentation:...
23 Jul 2016 by George Hayes
The problem is in pnglibconf.hYou will find a number of lines toward the bottom of the file the variable has been tabbed down to the next line.Simply bring those variables back up to the same line and save again.
29 Dec 2023 by Rick York
The reason the GUI appears is because gtk_main is called. That means you need to save all data necessary to add a row and make it accessible to the updating thread. It seems your retObj structure can be used for that purpose. When you create...
6 Oct 2012 by Mixim333
Hello everybody. I want to know how many forms is running now in my app. How can I do it in Gtk# and MonoDevelop?
18 Jul 2013 by singh_iitb
I am using Linux OS.Library: gtk-2.0.I want to create a GUI window application.In this window there is a text box and a submit button . The user will enter any string in the text box and press Submit button. then string should be stored in a char string.Please help me.
4 Dec 2013 by Sanket Saxena
I have developed (Windows + GTK# + C#)GTK application in MonoDevelop IDE. But, I am unable to create a setup file for this application. Can anyone have any idea how to create a setup file in MAC.
26 Mar 2014 by 曦 陈
on linux, is there any simple tools or IDEs for gui development? I am new to it. Can anyone give some advice?
26 Mar 2014 by CPallini
You could start from this page: "Programming Tools"[^].
27 Aug 2014 by kjon4200
I would like to use simple dll compiled in Mono(GTK), in WinForms in Visual Studio.I added references in VS to gtk-sharp, Mono.Cairo/Posix, gtk-dotnet, atk-sharpI'm starting to work with mono and before I proceed to work on more important things in mono I have to make sure that the dlls...
27 Aug 2014 by kjon4200
Problem solved.My solution is very simple: Gtk.Application.Init();dllTest.MyClass mc = new dllTest.MyClass();mc.Test();Gtk.Application.Run();Two lines of code and everything works fine.
8 Nov 2014 by Member 9857514
Hi, I download the gdk and dtk library from the link:http://www.gtk.org/download/win32.php[^] and trying to include gdk and gtk header to my C++/cli program in visual studio:#include #include #include but I get the Error 2 error C1083:...
8 Nov 2014 by Afzaal Ahmad Zeeshan
This is a Fatal Error C1083[^]. Read that MSDN documentation to learn more about it. But the best remedy is to check for the fileName that you're including because this error generates when the compiler is not able to find a name by that name. Make sure that...
12 Oct 2015 by Member 10262251
How can I simulate a Mouse Click in Mono (For Mac OS X)?Thank you!
12 Oct 2015 by Sergey Alexandrovich Kryukov
Please see my comment to the question. Sorry that I don't know the complete answer, but I'll tell you where to look for. I used to use Mono on Mac OS X, and I know that Mono itself won't be enough. You need to get access to Mac OS X specific API, in particular, Cocoa. So, you will need Monobjc...
26 Mar 2016 by DBPatric
I have Windows 7 x64, gtkmm 2.22 x86 and x64, TDM-GCC 4.9.2 x86 and x64, Eclipse Mars.2, and pkg-config installed as an Eclipse plugin. I have successfully compiled both x86 and x64 programs with this setup, but cannot get gtkmm 2.22 working as x86.I have four build options, debug x64, debug...
23 Jul 2016 by DBPatric
I want to build GTKmm 3.20 for use with Eclipse as I have tried all other avenues to get GTK working and have given up on all of them, and besides, I figure if I can build it in its current version, I'll never have to depend on someone to build it for me. I want to be able to do 32-bit and...
1 Jul 2016 by Richard MacCutchan
Looking at those error messages it would appear that you have some macro definitions missing. The message:pngstruct.h:266:21: error: operator '>=' has no left operand #if PNG_ZLIB_VERNUM >= 0x1240would seem to imply that PNG_ZLIB_VERNUM has not been defined anywhere.
15 Aug 2016 by mikeoabban
I have being trying to install XamarinStudio in my visual studio 2015 and it ask that I first install Gtk# 2.12.22 or higher. I have downloaded different versions of Gtk# to install but I keep getting the error message WinProject1.cab is corrupt for all the version I downloaded.please help me...
4 Oct 2016 by 김보람
Hi, I want to load an image file from computer and resize it.So I coded like that, but there were problem.image1 = FixedSize(image1, 300, 300);//compiler error reference: CS1502, CS1503//cs1503: gtk.image cannot convert system.drawing.image//cs1502: There are wrong argument at method...
15 Nov 2017 by Member 13376650
I have Ubuntu-server 16.04. Installed gtk3 and can execute my program manually by this command: ./img when I go to it's directory /home/m: [^] But when I try to execute my program from outside the /home/m folder by this command: /home/m/img & It only shows an icon inside a little window in...
13 Dec 2017 by Jochen Arndt
I have not used GDK so far but the errors are quite clear. Both are sourced by your image being NULL. You have to create a new empty GtkImage widget first: image = gtk_image_new(); Note also that you should check if loading from the files was successful: buf =...
31 Dec 2017 by kkdxghlctlcxxtidyuum
Hello, After installing a new distribution of GNU/Linux, I found that various applications were using a different icon set for their MenuStrips and ToolBars. My old distribution used the GTK+ icon set (Debian), my new distribution uses the Mint-X icon set (Linux Mint). My question is: how does...
23 Apr 2018 by calimero88
Hi, I'm just testing gtk in codeblocks, i downloaded the libraries from: Static GTK+3 for Windows | Tarnyko.net, serious side[^] i added all the includes paths for mingw and gtk all the libs paths and i added all gtk static libs in the project options. but i still get cannot find -lgtk-3...
23 Apr 2018 by Richard MacCutchan
Those are linker messages telling you that the linker does not know where those library files are stored. You need to add some option with the name of the library directory so it can find them. I don't know what that option might be as I have never used code::blocks, but I would expect the...
23 Apr 2018 by Jochen Arndt
You have to tell the linker where to search for libraries. This can be either done by adding the path(es) to the environment variable LIBRARY_PATH or by passing them on the command line using the -L option. I have not used CodeBlocks so far but there should be an option for those pathes...
6 Oct 2018 by HARDIK Joshi
Hi, I have c# based windows application and I want to port that application for Linux and OS X. Is it possible? if possible then how? if not possible then please guide or what can do? I am doing R & D from last 15 days so I found every where about MONO, GTK#, QT and Electron but I can't...
6 Oct 2018 by kanangandhi
How to deploy C# windows application on mac OS? - Refer this question[^]
15 Oct 2018 by HARDIK Joshi
I want to make a cross platform standalone GUI based desktop application using open source tools. Which technology or framework is more preferable for cross-platform GUI based application? I heard about Mono framework with GTK# forms using Xamarin Studio and Visual Studio 2017 for mac. I also...
15 Oct 2018 by Richard MacCutchan
You could try with Java. It is claimed to run on any platform, and supports a rich set of GUI tools and controls.
15 Oct 2018 by Richard MacCutchan
You could try with Java. It is claimed to run on any platform, and supports a rich set of GUI tools and controls. It seems that this is the same as your previous question: How to deploy C# based windows application for linux and OS X?[^].
12 Mar 2020 by OriginalGriff
Why does it close? Because you told it to! Look at your code: while(1){ ... return G_SOURCE_CONTINUE; } When the main function hits a return statement, that's it: the program ends. That is exactly what it is designed to do. ...
29 Dec 2023 by Shobhit_23
I am trying to make an application which renders a window of several rows and columns, and update it using some input I receive from command line. I am able to add rows based on the input, but the problem I am facing is that the GUI only shows up...
27 Sep 2015 by Beta
Im only have a console addin from the man pages
19 Aug 2012 by Maximys
Good day! I'm developing crossplatform application in MonoDevelop and I want to get the opportunity for user to save user's settings. How can I do it in MonoDevelop?Many thanks in advance
19 Aug 2012 by Sergey Alexandrovich Kryukov
It's all explained in the documentation:http://monodevelop.com/developers/articles/user_profiles[^].—SA
16 Aug 2016 by aolin.wang
Excuse me,My friendsDo you know Glade, it is a user interfaces designer.I don't know how to build it in Windows system.plz help me.Glade - A User Interface DesignerThank you.What I have tried:I do many many, but i am not successful.If you know ,plz tell me how to do in...
16 Aug 2016 by Richard MacCutchan
No need to build from source, you can get the Windows binaries from ftp.gnome.org[^].
13 Dec 2017 by Member 13376650
This is my code: #include #include void destroy(void) { gtk_main_quit(); } int main() { GdkPixbuf* buf; GdkPixbuf* buf2; GError* err = NULL; int a=0, i=0, j=0; GtkWidget* window; GtkWidget *image =0; gtk_init...
31 Dec 2017 by Richard MacCutchan
See How to Set the Look and Feel (The Java™ Tutorials - Creating a GUI With JFC/Swing - Modifying the Look and Feel)[^]
12 Mar 2020 by boonC
hello guys, i am c programming user. i have a project using raspberry Pi connect with sensors. i am currently stuck how to make the value update in second. i had tried using gtk_label_set_text and g_timeout_add_seconds. but the temperature unable...