2
votes
0answers
56 views

Creating Windows Form outside of Application.Run results in strange behaviour. Why?

After a week of code-debugging I found that the problem my Windows-Forms based GUI was behaving strangely was because I was running the form as: Form1 myGui = new Form1(); Application.Run(myGui); ...
0
votes
1answer
43 views

Winforms or XWT GUI designer for Mono?

I am new to programming and I am interested in developing applications in C# using Mono. I would like to choose a GUI framework other than GTK+: either WinForms or XWT (https://github.com/mono/xwt). ...
1
vote
0answers
31 views

Mono.Cairo and native UI

I want to build an application for Windows, Mac and Linux - based on mono. One part of the application will need a vector drawing library. I found Mono.Cairo which looks good, but every howto I can ...
1
vote
2answers
89 views

Should I rewrite GUI with GTK+ instead of WinForms for Mono?

I was making an application with Visual Studio, winforms and I'm using openTK. Recently I thought about making it cross-platform. I'm going to use Mono, because I don't know anything else similar. And ...
0
votes
1answer
50 views

Mono Console Application: Winforms Method Throws Exception On Linux Without X

I have a C# console application that I want to run on Linux. I've compiled it in MonoDevelop and on my machine (Ubuntu 12.04 LTS, 64 bit) it runs fine. However, on a VPS I have rented (same OS but no ...
1
vote
1answer
41 views

deploy sql+winforms application on Linux/Ubuntu while development server is still windows

I have a very limited knowledge for Linux/Ubuntu platform. There are some requirements coming though for me to deploy a version of our desktop application on either of the above platforms. With the ...
6
votes
2answers
198 views

Mono C# WinForms -> Serious performance problems when running on Mac OSX

I have a question regarding C#, Mono and OSX. I have created a Program in C# using Windows Forms and am trying to make it usable on a Mac. Problem is, that the performance is extremely poor on OSX ...
2
votes
0answers
142 views

How can I use System.Windows.Forms in MonoDevelop on Ubuntu?

I met this problem at the beginning of my work. I am using Mono 2.10 with MonoDevelop 2.8. When I create a new C# project, I can not use: using System.Windows.Forms because there is no such ...
0
votes
0answers
87 views

Mono error when using web browser

I am using Mono and I need to add WebBrowser control to my WinForms application. So I added default Winforms WebBrowser on to my app and run it with Mono. When I run it on my machine (windows 7) all ...
2
votes
0answers
83 views

Incorrect, missing, and duplicate keypress events

There appears to be a bug in how the OS X implementation of keyboard events is handled. The bug reveals itself when either multiple keys are pressed in rapid succession or all at once. Running my app ...
0
votes
1answer
93 views

C# Winforms with Mono SQL Server Failure

I'm new to Mono, and I'm trying to do some very basic proof-of-concept testing for running a winforms app with Mono. I built a very simple app in VS2012 (has basically one button and some data access ...
2
votes
1answer
333 views

Windows Forms error in Linux environment on Raspberry Pi

I have developed a full application in C# that works entirely in Windows. I have now installed mono on Linux (Debian on RPi), and am executing the application. The first form (a login form) loads ...
0
votes
0answers
45 views

Mono Winforms runtime error g_mutex_lock

I am trying to run a simple MonoDevelop application with Winforms on my linux system. I have installed MonoDevelop, Mono libraries, and winforms, and have included them in the build process. While ...
1
vote
0answers
117 views

ObjectDisposedException when selecting DataGridView cells?

I think I have found a bug in mono, but I have not isolated it completely, I need help to isolate my problem. To reproduce this error run csharp HelloWorld.cs click any cell modify the contents of ...
5
votes
1answer
292 views

Why winform panel only updates when mouseover or mouseclick?

I created a test program that is supposed to change backcolor of a panel back and forth repeatedly under linux (PCLinuxOS), but it doesn't really work very well. Either it only updates the panels' ...
1
vote
1answer
352 views

How to make a Mono/Winforms application look like a modern application?

When I write a application in Mono with the Winforms GUI toolkit, it looks pretty native (ofcourse, because it is.), but it looks old, like an application that was made for Windows 98. I searched in ...
0
votes
1answer
234 views

Form background transparency but still have click events

I have been trying to work out if this is possible. Essentially what I want is to have a form with a border as normal but with a transparent background. In this area I want a live display of what's ...
1
vote
0answers
238 views

C# Windows Form Program on ARM Linux based on QT with MONO

Command Link Programme is Ok. When I run Windows Form Program, Error message shows: Unhandled Exception: System.TypeInitializationException: An exception was thrown by the type initializer for ...
0
votes
0answers
91 views

Icon doesn't show on window title bar

I'm fairly new to using Gtk# and Mono. I an using it on XUbuntu 12.04 and have "mono-complete" installed, along with all packages and libraries I thought that could be of any help. That's why I ...
1
vote
1answer
63 views

mono for android: possibility to tell compiler not to use certain methods (winforms)

Is there a possibility to make the compiler not check functions and methods that aren't used? I'm working on an app that relies on code (in C#), in which members of the system.windows.forms.dll are ...
0
votes
1answer
72 views

migrated a windowsforms project from visual studio to monodevelop on linux, no errors. Why application is running very slow?

I migrated a windowsforms project from visual studio to monodevelop on linux.I built in monodevelop, i am getting no errors but my application is running very slow. Please anyone help me do i need to ...
2
votes
1answer
195 views

copyright and trademark symbols in mono winforms [closed]

I am looking to potentially port over a windows .NET application to linux and while most of it works, I am having issues getting the trademark and copyright symbols to render correctly in winform ...
1
vote
2answers
294 views

RichTextBox enconding on Linux - Mono

My RichTextBox contains a few colored text. His Font is new Font("Arial", 8.25f, FontStyle.Regular, GraphicsUnit.Point, ((byte)0)) In Windows I don't have any problem. But in Linux diacritics isn't ...
1
vote
2answers
192 views

Are there any WinForms control libraries which support Mono?

We're migrating an existing WinForms application to Mono so that we can run on Linux and iOS, and we're updating the UI in the process. I've been looking around at WinForms control libraries to ...
1
vote
2answers
128 views

Problems detecting key combinations in WinForms app under Mono on Mac

I'm trying to get a .net 2 Windows.Forms application running on the Mac using Mono. The application has key combination short cuts for all functions, which have pre-defined defaults and can be ...
0
votes
1answer
106 views

Multiple windows application's bug in Mono

I'm developing a C# application with LinuxMint and MonoDevelop. I wrote the next code, using System; using System.Collections.Generic; using System.Linq; using System.Windows.Forms; using ...
0
votes
1answer
185 views

Sharing SQLite code between Monodroid and Winforms

I'm trying to share all my business logic code across three applications: an android app, an iOS app, and a Winforms app. All three of these applications need access to a local Sqlite database, and I ...
0
votes
1answer
178 views

System.Windows.forms under ubuntu

Hi i'm really a beginner in C# and still learning the principles of language I'm working under ubuntu and compiling with gmcs and running with mono and I need to compile a program beginning with : ...
1
vote
1answer
308 views

Exception when using mkbundle(mono) to compile Simple Winforms Application

I have tried using mkbundle --deps f.exe -o d.exe But exceptions are thrown I get the following errors embedding: I:\f.exe embedding: C:\PROGRA~2\MONO-2~1.8\lib\mono\4.0\System.dll ...
0
votes
2answers
658 views

winform to GTK# for Mono

I have created a C# application with 50 forms. Unfortunately Mono (Mac OS version) doesn't work with standard window winform. I don't know why, but I this moment I need to solve the problem. The ...
1
vote
0answers
417 views

RegisterClass error in Unity Editor when using Mono.WinForms

I'm using Mono.WinForms to create external windows in Unity and it works great except that I get this error message each time I play the scene (but never the first time when Unity is freshly started): ...
2
votes
1answer
452 views

WinForms Anchor Control changes Location Origin?

I have been porting my C# / .NET 2.0 project over to Mono for use on other platforms, but this seems to have brought up a problem in the NATIVE WinForms implementation. I have isolated the problem to ...
1
vote
1answer
570 views

weifenluo.winformsui.docking dll for Linux

I have C# application which uses weifenluo.winformsui.docking.dll 2.3.1.0 for Docking. It runs nicely in Windows but does not run in Mono on Linux, ubuntu version 10.04 32-bit. It gives the exception ...
2
votes
5answers
251 views

Importing and developing WinForms applications on linux

I have a Visual Studio C# project, with a GUI done in WinForms. I'd like to continue its development on Linux. I have two questions: firstly, how can I compile it on Linux? I can compile single .cs ...
0
votes
2answers
195 views

Mono application has garbled text on Linux

I have a Mono application with a plain-old Windows Forms form that has a single Label control in the center. On Windows, both in Mono and in Microsoft.Net, the application looks fine: However, on ...
5
votes
1answer
298 views

Mono & WInforms on OS X

I have just begun to explore the mono winforms environment and I cannot work out how to start a program from within monodevelop without a console session being started. My simple program runs okay ...
0
votes
1answer
145 views

WindowsForms and Mono. Limitations of the minimum window size

With a library. NET it works, but not with Mono. Problem: need to make the form borderless (FormBorderStyle = none) and the 50 to 50. install MaximumSize 50, 50, but the width of the reason is all the ...
1
vote
1answer
3k views

Using system.windows.forms on Mono develop on Linux

I have been using ubuntu 10.04 and recently 11.10. I have mono develop installed thro synaptics or ubuntu software centre. I have been doing c# and windows forms programming on visual studio on ...
4
votes
2answers
613 views

Is there an alternative to .net's Windows.Forms.DataVisualization.Charting assembly?

Is there an alternative to .NET's Windows.Forms.DataVisualization.Charting assembly? The re-implementation in mono is far from being finished. I don't care if the interface is different from the .NET ...
3
votes
1answer
569 views

.Net components for Mono [closed]

Can anybody suggest any stable WinForms .Net components, that are compatible with Mono. As I know DevExpress and Infragistics still have a lot of Windows specific PInvoke calls which. UPDATE 1: I ...
0
votes
1answer
355 views

winforms visual styles on mono

How to enable winforms visual styles in mono( probably running in fedora or ubuntu gnome) or is it a good idea to just use GTK#? The thing is I dont want to leave visual studio and use monodevelop for ...
0
votes
1answer
313 views

How to take screenshot from Panel in mono C#?

How to take all screenshot from Panel in mono C# ? I need not used winAPI. My panel can not be fully visible.
4
votes
2answers
924 views

Mono with C# - Converting a WinForms interface over to Cocoa? (or whatever the default OS X interface is)

I have a C# app that I've managed to get working with Mono and running on OS X. The application itself runs just fine, but it doesn't really look all that good when run on OS X. The button fonts look ...
0
votes
1answer
354 views

Does not move toolstrip

Not moved toolstrip in ubuntu. I create in vs 2010 with Mono. In Windows Seven all rigth. because of what this can happen?
8
votes
4answers
3k views

Using Mono to port a C# .NET app to OS X?

Alrighty guys, I'm writing an application that I want to be cross-platform. Up until recently I've been trying to do this in Silverlight with C# because it also runs on OS X, but with me being fairly ...
1
vote
2answers
140 views

How setup my mono app from unix?

I create mono app (C#,winforms) but I do not understand how do I install on unix platform? for example ubuntu ?
3
votes
2answers
323 views

How does Mono's WinForms determine the system font size?

I wrote a C# application for Linux that is compiled by mono (gmcs) and uses the WinForms 2.0 library render a user interface. My application looks fine on my computer, but one of my customers is a ...
6
votes
2answers
297 views

What GUI toolkit should I use

I have a C# application. Currently all modules are written in .NET 2 and it uses some executables that have linux ports. So I was wondering what toolkit should I use on Windows and MacOS to compile it ...
1
vote
1answer
982 views

Accessing HTML DOM from Mono WebBrowser control?

Using .NET's Webbrowser control for Windows Forms , it is pretty easy to access the DOM. Consider this scenario this.webBrowser1.Navigate ...
0
votes
1answer
115 views

Mono and winforms control height issue

I have been testing my .NET windows applications with Mono on Ubuntu and noticed that my controls are always stretched in height. Width wise appears to be fine. I have a stack of 5 comboboxes that ...

1 2