![]() |
2011-05-09
, 08:29
|
Posts: 22 |
Thanked: 50 times |
Joined on Apr 2011
|
#32
|
The Following 2 Users Say Thank You to keks-n For This Useful Post: | ||
![]() |
2011-05-09
, 21:18
|
Posts: 1,141 |
Thanked: 781 times |
Joined on Dec 2009
@ Magical Unicorn Land
|
#33
|
![]() |
2011-05-10
, 21:07
|
Posts: 669 |
Thanked: 433 times |
Joined on May 2010
|
#34
|
It looks like that you need documentation for GTK#.
Try these links:
http://www.mono-project.com/GtkSharpBeginnersGuide
http://www.go-mono.com/docs/index.as...classlib-gnome
http://www.mono-project.com/GtkSharp
![]() |
2011-05-19
, 11:29
|
|
Posts: 233 |
Thanked: 220 times |
Joined on Jan 2010
@ Hungary
|
#36
|
![]() |
2011-05-21
, 14:28
|
Posts: 669 |
Thanked: 433 times |
Joined on May 2010
|
#37
|
![]() |
2011-05-23
, 17:10
|
Posts: 22 |
Thanked: 50 times |
Joined on Apr 2011
|
#38
|
Another issue i have is a crash when i use File operations (File.Copy for example) - the crash only happens when i execute it from the shortcut i made for it in hildon desktop - if i run from xterm the same command it works well. i thought it was probably a security issue so i tried executing it with sudo but it didn't help...
anyone knows how to solve this?
![]() |
2011-05-23
, 19:44
|
Posts: 669 |
Thanked: 433 times |
Joined on May 2010
|
#39
|
![]() |
2011-05-24
, 10:44
|
Posts: 22 |
Thanked: 50 times |
Joined on Apr 2011
|
#40
|
catch (Exception e)
{
var f=new System.IO.StreamWriter("/tmp/wtf");
f.WriteLine(e.ToString());
f.Flush();
}
i was trying to add an item to a combobox at runtime but i can't access its "Items" property (only from designer's properties).