- 7月 31 週三 201910:24
使用EntityFramework連接資料庫
- 7月 18 週四 201923:29
4 Steps of the Deep Learning Workflow
https://www.facebook.com/MATLAB/videos/372170376698253/
- 6月 20 週四 201922:23
OpenTK Tutorial 1

新增主控台應用程式
輸入關鍵字”openTK”安裝後,在你專案的參考中應該會出現OpenTK套件
- 4月 23 週二 201911:28
Tesseract相關
- 3月 25 週一 201909:55
WPF- MVVM
1. WPF – MVVM (一)2. WPF – MVVM (二)3. WPF – MVVM (三)4. UWP 和 WPF 对比
- 3月 21 週四 201910:41
列舉(枚舉)值看作位標記

1: 2: enum Animal
3: { 4: Dog = 0x0001, 5: Cat = 0x0002, 6: Duck = 0x0004, 7: Chicken = 0x0008 8: }9: static void Main(string[] args)
10: { 11: Animal animals = Animal.Dog | Animal.Cat; 12: Console.WriteLine(animals.ToString()); 13: Console.ReadKey(); 14: }- 3月 21 週四 201909:50
[C#.NET] 定義常數時用 readonly 好? 還是 const 好?
先說結論: readonly比較不會出錯,一般狀況新版的dll蓋過去就好,但如果是const狀況,須將整個專案重新編譯,才不會出錯!
參考資料:[C#.NET] 定義常數時用 readonly 好? 還是 const 好?
參考資料:[C#.NET] 定義常數時用 readonly 好? 還是 const 好?
- 3月 21 週四 201909:40
Windows Forms 中裝載 WPF 控制項
(1) 在 Windows Forms 中裝載 WPF 控制項
https://docs.microsoft.com/zh-tw/dotnet/framework/wpf/advanced/walkthrough-hosting-a-wpf-composite-control-in-windows-forms
(2) 反過來在 WPF 中裝載 Windows Forms 控制項
https://docs.microsoft.com/zh-tw/dotnet/framework/wpf/advanced/walkthrough-hosting-a-windows-forms-control-in-wpf
https://docs.microsoft.com/zh-tw/dotnet/framework/wpf/advanced/walkthrough-hosting-a-wpf-composite-control-in-windows-forms
(2) 反過來在 WPF 中裝載 Windows Forms 控制項
https://docs.microsoft.com/zh-tw/dotnet/framework/wpf/advanced/walkthrough-hosting-a-windows-forms-control-in-wpf
- 3月 19 週二 201914:25
Binding ICommand (命令繫結)

1: <Window x:Class="WpfApp3.MainWindow"
2: xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
3: xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4: xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
5: xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
6: xmlns:local="clr-namespace:WpfApp3"
7: mc:Ignorable="d"
8: Title="MainWindow" Height="450" Width="800">
9: <Grid>10: <Button Height="60"
11: Width="200"
12: Click="MyButton_Click"
13: Content="點我"/>
14: 15: </Grid> 16: </Window>
