Tagged Questions

Gtk# is a c# binding of the Gtk+ widget library.

learn more… | top users | synonyms

16
votes
4answers
481 views

Lazy loaded list view in GTK#

I'm looking to display a large dataset via a list view in GTK# and performance is an issue here. I'm currently using a TreeView backed with a ListStore, but adding all my data to the ListStore takes ...
11
votes
4answers
3k views

WinForms vs GtkSharp with Mono

When developing with Mono for an app to be run on Windows and Mac OSX (and maybe Linux) which would you suggest, WinForms or GtkSharp for the GUI and why? Specific examples and success/horror stories ...
9
votes
1answer
267 views

Reattaching pages to a Notebook in GTK#

I'm using a Notebook widget to pull off a tabbed file view, and I've added code to allow detaching pages from an existing Notebook, which spawns a new window with a separate Notebook, containing just ...
7
votes
2answers
148 views

Why does this derived class behave different from it's base class

In some obscure way a derived class which doesn't add new functionality (yet) behaves different from it's base class. The derived class: public class MyCheckButton : CheckButton { public ...
6
votes
2answers
451 views

Deploy GTK Sharp applications to Windows without installing GTK#

I am developing a GTK# mono application under openSuse, but I am interested in deploying it for all three platforms (Windows 7, Snow Leopard and as many Linux distributions as I can test on). ...
6
votes
2answers
387 views

Dynamically generated GUI

I am beginning preliminary design for a general purpose application to be used in my organization. The program needs to be both generic and specialized at the same time. It will contain widgets that ...
5
votes
3answers
281 views

Charting in Gtk / Gtk#

i would like to create a simple charting system for stock in Gtk# (and C#), with the possibilities to draw inside it. I don't know where to start: it's best to start from scratch ? Or using ...
5
votes
1answer
210 views

VirtualMode in Gtk.ListStore?

I'm looking for a feature within the Gtk.ListStore that working like the ListView.VirtualMode in Winforms. Is there something like that?
5
votes
2answers
457 views

In Gtk, when using Drag and Drop in a TreeView, how do I keep from dropping between rows?

I'm testing a window that looks something like this: Dragging a Tag to a Card links the Tag to the Card. So does dragging a Card to a Tag. It's meaningless to drop a tag between two cards, or a ...
4
votes
1answer
110 views

How to use Ubuntu Unity global menu in GTK#?

I'm developing a simple GTK# application(nothing serious, just a little project), and I've noticed my application menu bar is showing in my application window instead of Ubuntu's Unity global menu ...
4
votes
3answers
609 views

GTK# + WebKit + Windows

I have developed a GTK# application that makes use of webkit-sharp to edit email templates. This application works in Linux but when it is run in Windows it does not work. I am using the ...
4
votes
2answers
902 views

How to use GTK TreeView correctly

I am using a TreeView with a ListStore as model. When the user clicks on a row I want to take some action but not using the values in the cells, but using the data I created the row from... Currently ...
4
votes
2answers
814 views

Global Hotkey in Mono and Gtk#

I'm trying to get a global hotkey working in Linux using Mono. I found the signatures of XGrabKey and XUngrabKey, but I can't seem to get them working. Whenever I try to invoke XGrabKey, the ...
4
votes
2answers
485 views

Objective C <-> Mono bridge

I'm considering writing a cross-platform desktop app, initially for Mac/Windows, but eventually for Linux as well. Currently, I plan to structure it like so: Mac UI using Cocoa/Objective ...
4
votes
2answers
1k views

Console and Windows Forms in C#

Ok I'm creating an application with a plugin architecture and the application would be able to run without a GUI in other words the GUI is really optional... and if the user decides to use the GUI the ...
4
votes
3answers
1k views

Newbie Question: GTK# (Mono) on OSX

I am taking my first steps (or perhaps my last steps) in GTK# on Mono for OSX. I write a .cs file and then try to compile with mono: gmcs -pkg:gtk-sharp-2.0 one.cs this results in this message ...
4
votes
4answers
608 views

Crossplatform threading and GTK#, not working (properly)?

I'm trying to make a crossplatform C# application using C#, mono/GTK# on Linux and .NET/GTK# on Windows, however the startup sequence seems to need to be slightly different under the two platforms: ...
3
votes
0answers
38 views

Mono GTK# view list with multiple views (icons, details, list etc)

I'm writing my first Mono GTK# app, and need a list control that can support multiple views, eg a list, details, icons (similar to Windows Explorer). I basically need a widget that is a TreeView, ...
3
votes
1answer
41 views

Easy way to create menus in GTK#?

Is there an easy way to make menus in Gtk# ? In Gtk+ and PyGtk there is the ItemFactory which creates menus easily but it is bugged and deprecated in Gtk#, so is there any other easier way? Except for ...
3
votes
1answer
200 views

Two Gtk TextView widgets with shared Scrollbar

I want to have two TextView widgets side by side which are scrolled together with a single scrollbar. I can put both TextView widgets in a Hbox and then add them to a Viewport and then to a ...
3
votes
1answer
101 views

Add instances of the Button to the form dynamically in monodevelop

I use MonoDevelop 2.4.2.1 on WinXP. I have a window with VBox and button 'MyButton'. Now I should write a method for 'MyButton' for creating other Button's instances dinamically. I can't understand ...
3
votes
1answer
351 views

GUI building with GTK#

I may need to build a GTK GUI using C# and Mono. If I understand correctly, that means I have 3 choices: Write the C# code to call the GTK# wrapper classes. GUI is "in the code". Use MonoDevelop ...
3
votes
3answers
298 views

How to force F# interactive to reference Gtk# by default?

I am mostly playing with F# on Linux and would like to get all the necessary GUI libraries (Gtk, Gdk, Atk, Glib, Pango, Cairo) to be referenced by default so that I can simply use: open Gtk;; ...
3
votes
1answer
249 views

GtkSharp: Do there exist some books?

i'm trying to develop an application with Gtk# and MonoDevelop. I like Mono and i like Gtk#, but the problem is there's a lack of "official" book about it. You could say "there is mono site with ...
3
votes
0answers
455 views

What's easier and cleaner? GTK or QT? [closed]

Possible Duplicate: What should I choose: GTK+ or Qt? What's easier to understand and more natural, faster to master, pleasant to use every day with different languages - the latest version ...
3
votes
4answers
774 views

MonoDevelop — GTK Designer just shows a blank square?

I am having problems getting the GTK designer to work with MonoDevelop. I tried 2.4 on Arch Linux and it gave this problem. Then I tried 2.2 on OpenBSD and it gives the exact same problem. Both ...
3
votes
2answers
241 views

How hard is it for a .NET programmer to learn Objective C and Cocoa?

I'm trying to build a dual platform application for a company of my own I'm trying to start at night. I have the .NET version done, but have not finished the UI part. I'm thinking of buying some 3rd ...
3
votes
1answer
461 views

How do I access GUI (GTK) from multi threads?

I have a worker thread spawned from a GUI (for GUI performance), how do I access GUI, such as spawning new windows/widgets from the thread itself? I tried using delegates but it doesn't seem to be ...
3
votes
1answer
686 views

GTKSharp, Pango, set font size quirkiness

I'm using GTK Sharp to work on some GUI for my app. Take a look at this chunk of code: Pango.FontDescription fontdesc = new Pango.FontDescription(); fontdesc.Family = "Sans"; //fontdesc.Size = 12; ...
3
votes
1answer
186 views

In Gtk, what's the difference between a TreePath and a TreeIter?

I've been learning to use TreeViews, and these two types are often used for accessing a particular row of a tree. I don't really understand the difference between the two. My code is working--I ...
3
votes
1answer
510 views

Synchronous/Blocking Application.Invoke() for GTK#

Unfortunately, Application.Invoke() is asynchronous: private string ThreadFunction(int i) { string result = null; Gtk.Application.Invoke(delegate { OutputStringToUserInterface("i ...
3
votes
1answer
250 views

GTK# .NET Application without requiring separate GTK# Install

I was playing around with developing C# apps using MonoDevelop on windows and found that I like using GTK# instead of winforms. However, as far as I could tell so far you cannot just embed the GTK# ...
3
votes
2answers
2k views

GTK# mouse event in drawing area

I have a DrawingArea which I would like to received mouse events. From the tutorials I have found that the KeyPressEvent will also catch mouse events. However for the following code the handler is ...
3
votes
2answers
574 views

Binding Gtk# NodeView to a IList?

I've got a data object with a component in it that is an System.Collections.Generic.IList, and I'd like to reflect changes to that list into a Gtk# NodeView, so that when an item is added to the list, ...
3
votes
5answers
2k views

Winforms for Mono on Mac, Linux and PC (Redux)

(I asked this question in another way, and got some interesting responses but I'm not too convinced.) Is Mono's GtkSharp truly cross-platform? It seems to be Gnome based... how can that work with PC ...
2
votes
1answer
44 views

What are the best sites/forums to contribute/share gtksharp code using Mono [closed]

I'm new to the world of Mono and GTKSharp programming, having come from using visual studio on Windows it's a refreshing change to develop on Ubuntu using MonoDevelop. I would like to find sites that ...
2
votes
1answer
49 views

StatusIcon doesn't appear in notification area

I'm using following code to display a notfication icon in ubuntu 11.10 (gtk-sharp 2.12) StatusIcon icon = StatusIcon.NewFromStock(Stock.Harddisk); icon.Visible = true; but the icon does not appear. ...
2
votes
1answer
59 views

Having trouble getting the Mono GUI designer to appear

This is almost too embarrassing to ask... I create a new Monomac project (though I get the same issue with Gtk#); Mono then drops me in the source view for Main.cs. Now how do I get to the GUI ...
2
votes
2answers
122 views

Changing the individual pixels of a Gtk.Image

I am trying to set individual pixels on a Gtk.Image widget. The documentation states that the ImageProp property of a Gtk.Image returns a Gdk.Image which seems to let you edit the individual pixels, ...
2
votes
1answer
47 views

GTK# : What should the parameter of ListStore be ?

I'm trying to create a ListStore in order to set it as completion-model in an entry field. ListStore store = new ListStore(string); Output : Error CS1526: Unexpected symbol )', expecting.' ...
2
votes
1answer
49 views

How do you make a Caption Less Window in Gtk?

I want to make a Window in Gtk (Gtk# to be specific, but GTK+ or any other binding will do, the functions are generally the same) without a caption. Kind of like Mozilla Firefox 4 and Google Chrome. I ...
2
votes
2answers
137 views

How do you make a Syntax Highlight Text Editor in Gtk Sharp?

I would like to make a custom Text Editor for Gtk# (maybe inherited from Gtk.TextView) which supports Syntax Highlighting , and maybe line numbers at the side. (Something like Scintilla/SciTE?) ...
2
votes
1answer
103 views

Scrollbars not showing

I have an Image Widget inside of a ScrolledWindow widget. The image's Show Scrollbars Property is checked, and still, when I launch the application, the scrollbars are not shown. More info: The image ...
2
votes
3answers
85 views

GTK# SDK documentation

Yo, I recently started developing my first application in MonoDevelop. It's a GTK application in C#. I really like it, but I am used to C#/.NET and Java so I really really miss so documentation ...
2
votes
1answer
18 views

How can I use the FilterFunction passed to Gdk.Window.AddFilter?

I need to intercept several events before they are delivered to the widget's standard handlers, so I've done this already: //Inside the definition of my custom widget protected override void ...
2
votes
2answers
605 views

How to display data from a SQLite database into a GTK# TreeView?

OS: openSuse 11.4 IDE: MonoDevelop 2.4.2 using GTK# I need to display the datatable of a sqlite database in a simple grid view, much like in WindowsForms'/WPF's datagridview, but with GTK#. I have ...
2
votes
2answers
218 views

Drawn content lost on window overlap in GTK#

I am using Cairo in a GTK# application for drawing. When another window covers part of the drawn content, the overlapped part of the drawn content is lost. Is there a way to make it permanent? Here ...
2
votes
1answer
245 views

How to remove frame (or border?) form a GtkScrolledWindow

How I can remove the frame (or the border if it is...) of a GtkScrolledWindow (gtk#)? Use of window.ShadowType = ShadowType.None; don't work, window.BorderWidth=0; don't work... Thanks for help!
2
votes
1answer
116 views

How to detect a tag applied to a text in Gtk# TextView's?

I am programming a very simple text editor component for a personal project. It supports bold, italic, underline, righ, center, left and fill justification... so far so god. Using ...
2
votes
1answer
472 views

How to draw something (line, circle etc.) on a Gtk# Window?

I'm using Mono and C#. I would like to create a "graphical" application. In WinForms and .NET I can use System.Drawing. What can I use with GTK#? And, how is the performance of GTK# under Windows? ...

1 2 3 4 5