public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
button1.Size = new Size(50, 50);
GraphicsPath Gcircle = new GraphicsPath();
我使用了来自CodeProject的精彩文章。这个项目在Windows8.1上运行得很好
使用表单的示例。现在我将表单更改为WPF-Window (使用带有.net 4.5.2的VisualStudio2015)。
// The WPF-Window for infos behind the icon
public partial class InfoBehindIcon : Window
{
public InfoBehindIcon()
{
InitializeComponent();
// in .xaml: the decoration
这是我的问题的详细信息。我已经创建了一个数据访问层类,它允许我创建与数据库(Odbc、OleDb和SqlClient)通信所需的大多数对象。我还创建了一个业务对象处理层类,它密集地使用反射来处理我的业务对象的大量任务。在其他方面,这个类生成我的DAL处理所需的每个单独的属性/对象(SQL流、值列表、属性、设置检索值等)。请看下面的代码以获得进一步的解释:
Public Shared Function InvokeParam(Of T)(_classObject As T, _commandType As AdapterCommandType, _arguments As Object(