Skip to content

Instantly share code, notes, and snippets.

@KatsuYuzu
KatsuYuzu / CounterViewModel.vb
Created December 7, 2013 05:43
C#からの変換依頼
Imports System.Windows.Input
Imports System.ComponentModel
Namespace CounterApp_CS
Public NotInheritable Class CounterViewModel
Implements INotifyPropertyChanged
Public Sub New()
counter_ = New CounterComponent.Counter()
@KatsuYuzu
KatsuYuzu / log4netSample.cs
Last active December 17, 2015 23:38
logn4etの動作サンプル
// AssemblyInfo.cs
// [assembly: log4net.Config.XmlConfigurator(Watch = true)]
// App.config
// <configSections>
// <section name="log4net"
// type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
// </configSections>
// <log4net>
// <appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender">
# アプリケーションのプライバシーポリシー
このアプリケーションは、個人情報を収集したり公開しません。
--------------------------------------------------------------------------
# Application privacy policy
This application does not collect or publish any personal information.
using Microsoft.Expression.Interactivity;
using Microsoft.Phone.Controls;
using System.Windows;
using System.Windows.Interactivity;
namespace KatsuYuzu.Interactivity
{
/// <summary>
/// ページの向きを基に状態を切り替えます。
/// </summary>