Skip to content

Instantly share code, notes, and snippets.

View NvVijayakumara's full-sized avatar

Vijayakumara Nv NvVijayakumara

View GitHub Profile
@NvVijayakumara
NvVijayakumara / aqyketycipo.md
Created October 20, 2020 09:50 — forked from anonymous/aqyketycipo.md
fxcop 1.36 download mirror

fxcop 1.36 download mirror

While this is not new news, I realized that finding the link to download FxCop 1.36 is still not as straight forward as I'd like it to be (most links are still pointing to the 1.35 on msdn code or the 1.36 Beta 2 release), so I thought I would. .NET Framework 用の静的コード分析ツール FxCop、 その最新版 1.36 のダウンロードページが …突如消えた!? (@@; ナニごとかと探し回ってみれば。 FxCop 10.0 というタイトルで、 わずか 2行のドキュメントファイルが! (FxCop 1.36 のページ. 2010/07/26 · Version 10.0 of FxCop is the version that ships with Visual Studio 2010 Premium. FxCop 10.0 is part of Version 7.1 of the Microsoft Windows SDK for Windows 7 and .NET Framework 4. Instructions Download the Microso
https://drive.google.com/open?id=1Czc__eXmKSYnInApK6--VweSCTkhNAUK
https://drive.google.com/open?id=1bnTCda7pLst97nV8fJRsWGtSxUXFkuff
@NvVijayakumara
NvVijayakumara / gist:6025995a44bbe1616cd6d58f4c204fe5
Created September 14, 2017 11:48 — forked from alimbada/gist:3083937
Metro Style for WPF Button
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style
x:Key="ButtonFocusVisual">
<Setter
Property="Control.Template">
<Setter.Value>
<ControlTemplate>
<Rectangle Margin="2" SnapsToDevicePixels="true" Stroke="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" StrokeThickness="1" StrokeDashArray="1 2" />
</ControlTemplate>
@NvVijayakumara
NvVijayakumara / gist:20a12080127078bfad127b3bf1831b28
Created September 14, 2017 11:29 — forked from hansmaad/gist:9187633
WPF Flat Combo Box Style
<!-- Flat ComboBox -->
<SolidColorBrush x:Key="ComboBoxNormalBorderBrush" Color="#e3e9ef" />
<SolidColorBrush x:Key="ComboBoxNormalBackgroundBrush" Color="#fff" />
<SolidColorBrush x:Key="ComboBoxDisabledForegroundBrush" Color="#888" />
<SolidColorBrush x:Key="ComboBoxDisabledBackgroundBrush" Color="#eee" />
<SolidColorBrush x:Key="ComboBoxDisabledBorderBrush" Color="#888" />
<ControlTemplate TargetType="ToggleButton" x:Key="ComboBoxToggleButtonTemplate">
<Grid>
<Grid.ColumnDefinitions>