摘要:
<Style x:Key="workButtonStyle" TargetType="{x:Type Button}"> <Style.Triggers> <Trigger Property="IsMouseOver" Value="False"> <Setter Property="FontSize" Value="20"/> </Trigger> <Trigger Property="IsMo 阅读全文
摘要:
<Window x:Class="WpfApp53.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/exp 阅读全文
摘要:
static void Main(string[] args) { int i = 0; Parallel.For(0, 100, (x) => { Console.WriteLine(i); i++; }); Console.WriteLine($"i is {i}"); Console.Read 阅读全文
摘要:
<?xml version="1.0" encoding="utf-8"?><packages> <package id="Prism" version="5.0.0" targetFramework="net452" /> <package id="Prism.Composition" versi 阅读全文
摘要:
Prism.Unity 中UnityBootStrapper已经不用了,可以继承PrismApplication 1.Install-package Prism.Unity -v 7.2.0.1367 2. 3. 阅读全文
摘要:
DictionaryDictionary is generic type Dictionary<TKey,TValue>Dictionary class is a strong type < TKey,TValue > Hence, you must specify the data types f 阅读全文
摘要:
1.query all the store procedures in the specfied db; 2.create proc with while loop 阅读全文
摘要:
SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO CREATE TABLE [dbo].[YearSalary]( [year] [int] NULL, [salary] [money] NULL ) ON [PRIMARY] GO select * from yearsalary; select 'year' as WorkYear,[2011], 阅读全文
摘要:
using System; using System.Text.RegularExpressions; namespace ConsoleApp375 { class Program { static void Main(string[] args) { RegularExpressionDemo(); ... 阅读全文