摘要:
Default input bindings ====================== The default input bindings in the PlotController are: | Action | Gesture | | | | | Pan\ | Right mouse bu 阅读全文
摘要:
linux下列出所有连接到你的Server的IP地址 最近要做一个检查所有连接到主机的IP的脚本,google到一篇老外写的文章 "《List all IP addresses connected to your Server》" 试了一下脚本结果好像可以。因为对linux了解很少,所以对这 行 脚 阅读全文
摘要:
1. 获取属性对象 PropertyInfo pCode = TObject.GetType().GetProperty("Code");2.pCode.GetValue(item, null).ToString() 阅读全文
摘要:
可能是因为某些安全问题,微软的PasswordBox控件的Password属性不能绑定。在只需要单向绑定时,可以用 Button的Command="{Binding LoginCommad}" CommandParameter="{Binding ElementName=MyPasswordBox}"/>就把PasswordBox传回ViewModel了 阅读全文
摘要:
1.ComboBox的绑定纵是显示类型名称。 找到类似<Style d:IsControlPart="True" TargetType="{x:Type ComboBoxItem}">的代码段 注释掉 <!--<ContentPresenter x:Name="contentPresenter" Content="{TemplateBinding Content}" ... 阅读全文
摘要:
有不少都用到了拼接字符串,我之前用循环拼字符串,有时候写起来很麻烦。现在查到这样一种写法,大家可以保留备用:QueryUsers = String.Join(",", query.Users.ConvertAll(u => u.Code).ToArray())String.Join(string separator, params string[] value);第一个参数是连接符,而且只连接,不会在头尾加出多余的字符。第二个参数是一个string类型的数组。这里又先调用List的ConvertAll方法List<TOutput> ConvertAll&l 阅读全文
摘要:
1 private GroupType _selectedMyEnumType; 2 3 public GroupType SelectedType 4 { 5 get { return _selectedMyEnumType; } 6 set 7 { 8 _selectedMyEnumType = value; 9 RaisePropertyChangedEvent("SelectedMyEnumType"... 阅读全文
摘要:
<DataGrid.CellStyle> <Style TargetType="DataGridCell"> <Style.Triggers> <DataTrigger Binding="{Binding Path=QueryName}" Value="AI Airline Quer... 阅读全文
摘要:
<ribbon:RibbonSplitButton ToolTipDescription="{Resx Ribbon.StandDisplayGroup.ToolTip}" ToolTipTitle="{Resx Ribbon.StandDisplayGroup.ToolTipTitle}" KeyTip="DG" La... 阅读全文
摘要:
xaml中有如下资源 <UserControl.Resources> <VisualBrush x:Key="HatchBrush" TileMode="Tile" Viewport="0,0,10,10" ViewportUnits="Absolute" Viewbox="0,0,10,10" ViewboxUnits="Absolute"> <Visu... 阅读全文