1
0
mirror of https://github.com/mbirth/wiki.git synced 2024-11-12 13:46:46 +00:00
wiki.mbirth.de/know-how/development/_posts/2009-07-17-mono-winforms.md

36 lines
1.0 KiB
Markdown
Raw Permalink Normal View History

2015-02-25 23:22:00 +00:00
---
created: 2008-10-08 15:23:14 +0200
2022-01-23 17:14:59 +00:00
language: en
layout: redirect
layout_old: default
redirect_to: https://blog.mbirth.de/archives/2008/10/08/mono-+-winforms.html
2015-02-25 23:22:00 +00:00
tags:
2022-01-23 17:14:59 +00:00
- know-how
- development
- mono
- winforms
title: Mono + WinForms
toc: false
updated: 2009-07-17 23:15:27 +0200
2015-02-25 23:22:00 +00:00
---
2022-01-23 17:14:59 +00:00
2015-02-25 23:22:00 +00:00
**Installation manual:** [mono-project.com](http://www.mono-project.com/WinForms_Designer#Installation)
**Forum:** [UbuntuForums.org](http://ubuntuforums.org/showthread.php?t=468183)
The `System.Windows.Forms.dll` is contained in the [mono-winforms2.0-cil](apt://mono-winforms2.0-cil) package. The file
resides in `/usr/lib/mono/2.0/`. To make it show up in MonoDevelop, you might have to create a file `/usr/lib/pkgconfig/windows-forms.pc`
with the following contents:
~~~
prefix=/usr
exec_prefix=${prefix}
pkglibdir=${exec_prefix}/lib/mono/2.0
Name: System.Windows.Forms
Description: Windows Forms for Mono
Version: 2.0.0.0
Libs: -r:${pkglibdir}/System.Windows.Forms.dll
~~~
2022-01-23 17:14:59 +00:00
Afterwards you can add this as a Reference to your project in MonoDevelop.