Я использую Visual Studio 2010, я хочу создать несколько OvalShapes из VB PowerPacks в приложении Windows Form C #, но я не хочу перетаскивать их из панели инструментов, а хочу создать их вручную, проблема в том, чточто если я объявил их как переменные, они не будут отображаться в форме, как я могу их сделать, спасибо ...
Код:
using System;
using System.Collections.Generic;
System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using Microsoft.VisualBasic.PowerPacks;
using System.Windows.Forms;
namespace VB_PP
{
public partial class Form1 : Form
{
OvalShape[] OS_Arr;
public Form1()
{
InitializeComponent();
OS_Arr = new OvalShape[15]; //I will do some coding on the array of those OvalShapes,like move them with a Timer...
}
}
}