2,117 バイト追加
、 2020年2月15日 (土) 07:37
==WPF サンプル==
[WPF]
===NuGet===
*[www.galasoft.ch/mvvm Mvvmlight]
*[https://system.data.sqlite.org/index.html/doc/trunk/www/index.wiki SQLite]
*[https://archive.codeplex.com/?p=nsoup NSoup]
*[https://github.com/ButchersBoy/MaterialDesignInXamlToolkit MaterialDesignXamlToolkit]
**https://www.youtube.com/watch?v=-n5yeEOsbCk
===Template===
[[File:1451_wpf_window_template.jpg]]
<Window x:Class="FileLayoutConverter.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:FileLayoutConverter"
mc:Ignorable="d"
DataContext="{Binding Main, Source={StaticResource Locator}}"
Title="MainWindow" Height="350" Width="525">
<DockPanel>
<Menu DockPanel.Dock="Top" Height="Auto">
<MenuItem Header="ファイル(_F)"></MenuItem>
</Menu>
<ToolBar DockPanel.Dock="Top">
<Button Content="Button"></Button>
</ToolBar>
<StatusBar DockPanel.Dock="Bottom">
<StatusBarItem Content="Test"></StatusBarItem>
</StatusBar>
<Grid>
</Grid>
</DockPanel>
</Window>
===Tips===
*http://typea.info/blg/glob/wpf/
*[http://typea.info/blg/glob/2017/08/uwp.html 文字列リソースをXamlから利用する]
*[http://typea.info/blg/glob/2016/09/wpf-xaml.html データグリッド選択された行に対応するモデルを取得する]
*[http://typea.info/blg/glob/2016/07/wpf-2.html イメージリソースを画面表示するために、BitmapをBitmapSourceに変換する]
*[http://typea.info/blg/glob/2016/07/wpf-1.html データグリッドでハイパーリンククリックを処理]
*[http://typea.info/blg/glob/2016/07/wpf.html アプリケーションの実行パスを取得する]
*[http://typea.info/blg/glob/2016/07/wpf-window.html Window最小化ボタン処理のフック]