You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ZGGSONG 62be4793bd
perf: 通过Fody及Costura.Fody优化精简打包后文件
3 years ago
ScadaTool perf: 通过Fody及Costura.Fody优化精简打包后文件 3 years ago
.gitignore 实现基本功能 3 years ago
README.md 更新 'README.md' 3 years ago
ScadaTool.sln 实现基本功能 3 years ago

README.md

介绍

  • 基本MVVM代码结构、包括Command绑定控件

  • 实现单例模式

  • 实现C#驱动Go项目

  • View:

    • MordenWPF美化控件
    • Hardcodet实现WPF系统托盘效果
      • 代码实现图标闪烁

CSharp using Go

package main

import (
	"C"
	"zggsong.cn/scadatool/server"
)

func main() {
	run()
}

//export run
func run() string {
	// 启动服务
	server.StartServer()
	return "success"
}
/// <summary>
/// 引入Go项目库
/// </summary>
/// <returns></returns>
[DllImport("scadatool_go.dll", EntryPoint = "run")]
extern static GoString run();

#本项目中的代码示例
string result = GoCSharpHelper.Instance().GoStringToCSharpString(run());

Go字符串乱码问题

/// <summary>
/// 转换Go string类型为C# String
/// </summary>
public struct GoString
{
	public IntPtr p;
	public int n;
	public GoString(IntPtr n1, int n2)
	{
		p = n1; n = n2;
	}
}
public string GoStringToCSharpString(GoString goString)
{
	byte[] bytes = new byte[goString.n];
	for (int i = 0; i < goString.n; i++)
	{
		bytes[i] = Marshal.ReadByte(goString.p, i);
	}
	string result = Encoding.UTF8.GetString(bytes);
	return result;
}