Hallo,
ich schreibe gerade das erste mal eine Form Anwendung in C#.
Leider bekomme ich es nicht einmal hin ein Image zu laden.
Muss ich bei C# irgendetwas beachten?
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
using System.Drawing;
namespace WindowsFormsApplication1
{
static class Program
{
[STAThread]
static void Main()
{
FormMain MyForm;
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
MyForm = new FormMain();
Application.Run(MyForm);
Bitmap a = new Bitmap("D:\\Programmieren\\C#\\Daedalus\\New Daedalus\\bin\\Debug\\data\\screen.bmp");
MyForm.pictureMain.Image = a;
}
}
}
pictureMain = public System.Windows.Forms.PictureBox
Es kommt keine Fehlermeldung, es erscheint einfach nicht die Grafik?! Habs auch schon mit relativen Pfad ausprobiert.
Im Anhang das komplette Project
Das gesamte Programm im Anhang