07 2022 档案
摘要:https://beego.gocn.vip/beego/zh/developing/#%E5%BF%AB%E9%80%9F%E5%BC%80%E5%A7%8B 按照官方文档后发现没有bee.exe的解决方法: come from https://github.com/beego/beego/iss
阅读全文
摘要:在WPF中,3D的透视效果的实现必须遵循一个原则,透明的物体必须在不透明的物体生成之后生成。不管在xaml还是code behind中都必须遵守这个原则,否则无法实现透明效果。 myViewport.Children.Add(透明面) myViewport.Children.Add(非透明物体) 注
阅读全文
摘要:确保imagesource只有image控件引用的情况下,这么赋值: BitmapImage image = new BitmapImage(); image.BeginInit(); image.CacheOption = BitmapCacheOption.OnLoad; image.UriSo
阅读全文