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

learn more… | top users | synonyms

0
votes
1answer
12 views

How to set a Theme to a Gtk# application

I would like to know how to set Theme styles from a Gtk-Sharp application. I'm giving a try to MonoDevelop 4 in both OpenSuse 11.4 and a new 12.3 and writing a very simple gtk# app. The app is just ...
0
votes
2answers
34 views

Restart a Running Thread

I'm new to threading and need a lot of help. I have code based on events that starts a thread. The problem is that I loose references to the thread and thread.abort(); does not stop it, therefore my ...
0
votes
2answers
53 views

Threading a Function in c# is not Working

I have a problem with this code. The function is playing a music track, so it takes a while to finish executing.... However, even through it is threaded, it does not return untill it is done, holding ...
0
votes
1answer
12 views

GTK# Window Icon Not working

Does anyone know why this fails to run. I have this code and a file named logo.png in the same directory. Then I run this code and it fails, saying it cant find the file using System; using Gtk; ...
0
votes
1answer
29 views

How to add c# custom controls to MonoDevelop toolbox?

I am new to mono develop, I created a gtk# 2.0 project in Mono Develop and tried to add C# user defined controls like Zedgraph, but the toolbox is not accepting c# user-defined controls. Is there a ...
1
vote
0answers
29 views

How to display Scrollbar in webkit webview

I'm trying to display a scrollbar in een webview widget. I'm using this example to do it. But it doesn't seem to work for me. Can someone give me a hand with this. public void OpenWebView () ...
1
vote
0answers
15 views

mono gtk# - hello world deploy to windows

I have this really simple Hello World example i wrote on a linux host using Mono and gtk#. It simply shows a windows with a button. Now i tried to get the binary running on windows but failed. i ...
0
votes
1answer
18 views

Gtk#: Safe storage of the user's password

I use Gtk# and my program must to store user's password. I found, ProtectedData class of .NET Framework, but I cann't find this Gtk#'s class. Can you tell me, how to store user's password? Thanks in ...
0
votes
0answers
20 views

Drag & Drop on GTK# Window not working?

i'm currently working to get drag & drop on my mainwindow (GTK# Application). I followed this tutorial: https://live.gnome.org/GnomeLove/DragNDropTutorial I have added the following callbacks: ...
1
vote
1answer
31 views

Gtk Expander in a scrolled window: The width of the scrolledwindow doesn't update

When using a Gtk ScrolledWindow with the horizontal Policy Never, I expect the scrolledwindow to adapt, if the horizontal size request of the child changes. But that's not the case, for example when ...
0
votes
0answers
32 views

How to deploy GTK# GUI project (mono c#) into Mac OS x?

I am new to mono development with GTK# in mac os x. I have created one GTK# GUI application using mono c#. Now once I build it, it's creating .exe file in bin directory. I don't know how to convert ...
0
votes
0answers
13 views

Where to get windows binaries for gtk-sharp3

Similar to this question about GTK+ 3 for Windows, is there any place that offers compiled GTK# bindings for Windows? I searched for a while and can't find any official releases (which makes sense ...
0
votes
3answers
60 views

Convert List<Byte[]> to Byte[]

I use Gtk# and I need to convert List<Byte[]> to Byte[]. I found sample of this operation here, but it's .NET Framework's sample and when I try to do it by Gtk#, I have some compile errors: ...
0
votes
1answer
34 views

How to get Value from Gtk Scale / Range widget?

I am making my first ever C# project using monodevelop stetic gui creator. I have a few buttons, a TextView object and some Vertical and Horizontal Scaling widgets. These are all Gtk (or Gtk#, or ...
0
votes
0answers
43 views

how to integrate the GTK# installer to my own application installer

According to this guide Deploy GTK Sharp applications to Windows without installing GTK# I decided to integrate the installer to my own installer I made using NSIS I have a c# application which I ...
0
votes
0answers
28 views

Creating Database bound forms with c# and GTK#

I am converting an application from Access on Windows 7 to MySql/Gtk#/C# in Linux (Ubuntu 12.10). I use MonoDevelop as my IDE and I am learning as I go. So far I have managed to: convert the data ...
1
vote
1answer
113 views

Simple paint application: Referencing Cairo Context on mouse movement

I am attempting to use Cairo with GTK# to create a simple painting application. The feature that is giving me trouble is the one of drawing a line between two points. After clicking on the drawing ...
0
votes
0answers
9 views

Use Sourceforge project outgoing email for desktop

I'm currently looking to add an desktop application the ability to send the logfile to the authors (for exploring bugs,etc). Since I'm hosting the project on sourceforge I found the Project Web ...
-1
votes
1answer
11 views

how to prevent Notebook page switching? [closed]

How to prevent switching on some of notebook's pages until the conditions of the current?
0
votes
1answer
30 views

Mono GTK# - PropertyNotifyEvent of window or widget

I want to be able to react if a property of a given window or widget has been changed and found the Gtk.Widget.PropertyNotifyEvent event. The (mono) documentation says that it will be fired if any ...
0
votes
3answers
161 views

How to change window background color in mono (GTK)?

I have a window in gtk which includes a Build() function as follow: protected virtual void Build() { global::Stetic.Gui.Initialize(this); // Widget Client.Forms.Notification this.Name = ...
-6
votes
2answers
75 views

How do I check if Gtk.CheckButton is checked?

I am using GTK and I have inserted a CheckButton (GTK version of checkbox) to a window. Now I need to get if it's checked or not. How do I do that?
0
votes
1answer
71 views

How do I use gtk builder in c#

according to How do I connect glade signals using GtkBuilder in C#? in 2009 developers of mono were about to implement gtk builder to c#. It's 2013 and the proposed methods are still not available. So ...
0
votes
0answers
21 views

which version of gtk# is inside of mono 2.10

I can't find it anywhere - which version of gtk it support, gtk2 or gtk3? I created a layout using glade for gtk3 but I am getting these errors when I try to load it: test:1829): libglade-WARNING ...
0
votes
1answer
18 views

Class as parameter

I'm currently trying to implement a Logger. public class Logfile { public static Logfile getLogfile(class _classTogetLoggerFor) { } } The main idea is, that every class gets it's own ...
0
votes
1answer
112 views

Running an gtk# Application made in MonoDev with .Net

Right now I am trying to learn how to use gtk# and Xamarin studio , but after I create the .EXE I cant run it with .NET. I am really new to C# and I have no idea what my program needs to work in .Net ...
0
votes
0answers
19 views

Mono's analogue of POS

I work at my project for Point Of Sale (POS). I know, that I can use POS.NET if my application must work only at Window's, but my application must work at Linux's that's why I ask this question. I ...
1
vote
1answer
20 views

Menuitem with only 1 underlined accelerator

I'm currently trying to add MenuItems to a Menu, which works almost perfect. The MenuItems I would like to add are paths to files, so they may contain "_", which sets the MenuItem an accelerator, but ...
1
vote
1answer
68 views

Monodevelop app not working on windows

I am trying to make a Windows app in Mac using MonoDevelop, but when I try to use it on Windows I get this error Could not load file or assembly "Mono.posix" Does anyone know how to fix this? I've ...
1
vote
1answer
45 views

GTK# switch between Process window handles

GTK# switch between Process window handles Hi, In a GTK# program. Does anyone know how to switch between Process Window Handles? For example if I press a button in a GTK# program it switches the ...
0
votes
2answers
113 views

GTK Sharp Refresh / Redraw widget

I'm trying to develop a really simple GUI with mono and GTK sharp. I have a few two combobox and I need to change the options available in the secod based on the selected item from the first one: ...
0
votes
2answers
113 views

GTK# Webkit System.DllNotFoundException missing file webkitgtk-1.0.so.0

GTK# Webkit System.DllNotFoundException missing file webkitgtk-1.0.so.0 I written the following GTK# application which compiles successfully, code as below: using System; using Gtk; using GtkSharp; ...
1
vote
1answer
39 views

Why does Overriding Gtk.Widget.OnActivate() Change the Behaviour of the Widget?

I am trying to derive a class from Gtk.Button. I have encountered an obstacle that I can work around (by not using OnActivate at all), but that I cannot explain, hence working around it may be unsafe. ...
2
votes
1answer
67 views

What's the Correct Way to Run Code After Event Handlers?

I am deriving a class from Gtk.Button that is supposed to run some code when the button is clicked, but only after the user-defined event handlers. Based on .NET conventions, this wouldn't be a ...
0
votes
0answers
50 views

Medsphere.Widget installation errors,(in ubuntu)

My opreration:Ubuntu 12.04 Mono JIT compiler version 2.10.8.1 GTK# 2.12.0.0 I downloaded "Medsphere.Widget",and when I did these steps fellowed by"INSTALL" I met these troublesome: error ...
1
vote
1answer
155 views

How to remove multiple rows from TreeView in GTK#

Removing multiple rows from a TreeView in mono GTK# has tripped me up a little bit lately and the answer wasn't a quick google search away so I'm posting this question here. It has been extra ...
0
votes
2answers
109 views

What language is MonoDevelop IDE written in?

I'm doing research for a school paper and am a little confused by the wording on the MonoDevelop webpage. It reads: MonoDevelop was originally a port of the SharpDevelop IDE to Gtk#, but it has ...
-1
votes
1answer
91 views

How to Close a Gtk# Window Programmatically?

I am trying to close a Gtk# Window in the code by clicking a button. That is, the button should have the same effect as the X button in the title bar. While the window does close, however, the ...
0
votes
1answer
239 views

Drag and drop files into program

I'm using MonoDevelop tool. I want to make program like below with GTK#; 1. User drags file to program's listView, tableView or whatever 2. Dragged file's list is printed on the program's window ...
0
votes
1answer
55 views

Where to put global exception handler in Gtk# application?

I've started new Gtk# solution with MonoDevelop. Now where I can put global exception handler that popups a dialog to user with stack traces etc? Is there any existing libraries that can do this? ...
4
votes
1answer
149 views

Gtk# NodeView colored rows

I use NodeView object to output data to user in this way (Gtk# tutorial): [Gtk.TreeNode (ListOnly=true)] public class MyTreeNode : Gtk.TreeNode { string song_title; ...
0
votes
1answer
239 views

DataGridView for Linux and MonoDevelop

Hello everybody and Happy New Year. I want to use some GUI-object for output some table's information (this information is readonly). There are DataGrid and DataGridView in Windows Forms, but I can't ...
2
votes
1answer
80 views

Is there folder browser widget in Gtk#?

I built UI with MonoDevelop's Gtk# UI generator and found file chooser widget but not directory/folder chooser widget. Is there such a thing?
2
votes
2answers
295 views

Application.Quit() doesn't quit the application

I have this simple piece of code in C# with GTK#: Main.cs: using System; using Gtk; namespace Apu{ class MainClass{ public static void Main(string[] args){ ...
1
vote
2answers
206 views

ShowDialog() in Mono

I have 2 form in Mono.In OnClickEvent of a button in Form1, i want to showDialog Form2 and fetch a answer from Form2.In C# i have this code Form2 F=new Form2(); F.ShowDialog(); int MyAnswer=F.Answer; ...
0
votes
1answer
99 views

Set Font on GTK# Widget

I Would like to change the style of a button or menu entry by changing the font type. How con this be done cause there is no porperty on the GTK# widget for this like "Gtk.Button.Font"
0
votes
1answer
196 views

Save Gtk.DrawingArea to Bitmap

I need to save image of my DrawingArea object to Bitmap, but I can't find how to do it. Can anybody tell, how save DrawingArea image to Bitmap?
0
votes
2answers
64 views

Status of MouseButton for DrawingArea

I want to drawing image in the DrawingArea by mouse. I can know current mouse coordinate in the DrawingArea, but how can I know what's mouse button pressed? My current code looks like: ...
1
vote
1answer
122 views

Can I write LXDE panel plugins using C#?

I'd like to develop a plugin for LXPanel, the panel component for LXDE. They have instructions on how to create one using GTK+, but I'd prefer to use C#. Is this possible? Thank you!
0
votes
1answer
94 views

Trouble trying to create a DatePicker in GTK#

I'm new to GTK# (and desktop development for that matter) and I can't figure out what seems like to be a simple task. :( I can't get a simple date picker to work. I have a main window with a single ...

1 2 3 4 5 8