--- lang: ja-jp breaks: true --- # MudBlazor の最新のプロジェクトテンプレートを試してみる 2024-09-01 ## MudBlazor * https://github.com/MudBlazor/MudBlazor * ![image](https://hackmd.io/_uploads/rkFvMwZ2R.png) ## `MudBlazor`のプロジェクトテンプレート * https://github.com/mudblazor/Templates * * 通常は以下を実行して利用する。 * `dotnet new install MudBlazor.Templates` ## 最新のプロジェクトテンプレートを使用する。 * `MudBlazor.Templates`がインストール済みの場合はアンインストールする。 ``` dotnet new uninstall MudBlazor.Templates ``` * クローンする ``` git clone https://github.com/MudBlazor/Templates.git ``` * リポジトリのルートにある`InstallAndBuildAllTemplates.ps1`をpowershellで実行する。 ``` powershell ./InstallAndBuildAllTemplates.ps1 ``` * インストールされたかどうかの確認 ``` dotnet new uninstall ``` ``` D:\Tools\xxxxxxxx\MudBlazor_Templates\src\mudblazor テンプレート: Blazor Web アプリ (mudblazor) C# アンインストール コマンド: dotnet new uninstall D:\Tools\xxxxxxxx\MudBlazor_Templates\src\mudblazor ``` 以上で最新のプロジェクトテンプレートが利用できる。 ![image](https://hackmd.io/_uploads/r1S8Nw-2C.png) ## プロジェクトテンプレートの実行 ### Interactive render mode:`Auto`、Interactivity location:`Par page/component` ![image](https://hackmd.io/_uploads/rJIKNv-nR.png) ![image](https://hackmd.io/_uploads/HynXSv-3A.png) ![image](https://hackmd.io/_uploads/BkPMrvb3R.png) :::warning `DrawerToggle`ボタンが無い。 ::: ### Interactive render mode:`Server`、Interactivity location:`Par page/component` ![image](https://hackmd.io/_uploads/HJhISvZ20.png) ![image](https://hackmd.io/_uploads/SJrurD-2C.png) ![image](https://hackmd.io/_uploads/B1gqHPZhC.png) :::warning `DrawerToggle`ボタンが無い。 ::: ### Interactive render mode:`WebAssembly`、Interactivity location:`Par page/component` ![image](https://hackmd.io/_uploads/HyL7IvW3R.png) ![image](https://hackmd.io/_uploads/BJmVLPZn0.png) ![image](https://hackmd.io/_uploads/r1z88DW2R.png) :::warning `DrawerToggle`ボタンが無い。 ::: ### Interactive render mode:`Auto`、Interactivity location:*`Global`* ![image](https://hackmd.io/_uploads/HkvaIP-3A.png) ![image](https://hackmd.io/_uploads/BJtxDPbnA.png) ![image](https://hackmd.io/_uploads/S11BDwZ3C.png) ![image](https://hackmd.io/_uploads/H1qRPw-n0.png) :::info * `DrawerToggle`ボタンがある。 * `DarkModeToggle`ボタンがある。 * `MoreVert`※(・・・)ボタンがある。 ::: ###### tags: `MudBlazor` `プロジェクトテンプレート` `Blazor` `Material Design`