- Ctrl+Shift+F1
- Alt+Enterして Show Quick Documentation を選んでも良い
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Window x:Class="NestedStyles.MainWindow" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| Title="MainWindow" Height="350" Width="525"> | |
| <Window.Resources> | |
| <Style TargetType="{x:Type Button}"> | |
| <Setter Property="MinWidth" Value="100" /> | |
| </Style> |
- What are the differences between the XmlSerializer and BinaryFormatter
- http://stackoverflow.com/questions/1154198/what-are-the-differences-between-the-xmlserializer-and-binaryformatter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Window x:Class="WpfApplication1.MainWindow" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| Title="MainWindow" Height="350" Width="600"> | |
| <Window.Resources> | |
| <DataGrid x:Key="パターン1" x:Shared="False" AutoGenerateColumns="False" ItemsSource="{Binding .}"> | |
| <DataGrid.Columns> | |
| <DataGridTemplateColumn Header="名前"> | |
| <DataGridTemplateColumn.CellTemplate> | |
| <DataTemplate> |
http://pocketsilicon.com/post/Things-That-Make-My-Life-Hell-Part-1-App-Domains
- 別のAppDomainで作成したリモートオブジェクトのライフタイムは5分。その間一切アクセスしないと参照保持していても内部では切断されている。
http://www.codeproject.com/Articles/35851/Fast-Marshaling-for-Cross-AppDomain-Proxies
http://stackoverflow.com/questions/2206961/sharing-data-between-appdomains
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 参考:http://www.codeproject.com/Articles/309927/WPF-TextBox-With-Ellipsis | |
| public class TextBoxEx : System.Windows.Controls.TextBox | |
| { | |
| private string _longText; | |
| private bool _useLongTextForToolTip; | |
| private bool _isExternalChange; | |
| public TextBoxEx() | |
| { | |
| _longText = string.Empty; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading; | |
| using System.Threading.Tasks; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Data; | |
| using System.Windows.Documents; | |
| using System.Windows.Input; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using System.Windows; | |
| using System.Windows.Controls; | |
| using System.Windows.Data; | |
| using System.Windows.Documents; | |
| using System.Windows.Forms; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Window | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:exControls="clr-namespace:NonTopmostPopupSample.ExControls" | |
| xmlns:behaviors="clr-namespace:NonTopmostPopupSample.Behaviors" | |
| xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity" | |
| xmlns:ei="http://schemas.microsoft.com/expression/2010/interactions" | |
| x:Class="NonTopmostPopupSample.MainWindow" | |
| Title="Non Topmost Popup Sample" | |
| Height="426" |