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 Prism.Unity.Windows; | |
using RssReaderApp.Views; | |
using System.Threading.Tasks; | |
using Windows.ApplicationModel.Activation; | |
using Windows.UI.Xaml; | |
using Windows.UI.Xaml.Controls; | |
namespace RssReaderApp | |
{ | |
/// <summary> |
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
<ContentDialog | |
x:Class="RssReaderApp.Views.AddFeedDialog" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
xmlns:local="using:RssReaderApp.Views" | |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
mc:Ignorable="d" | |
Title="Feedの追加" | |
PrimaryButtonText="追加" |
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
<# | |
.Synopsis | |
短い説明 | |
.DESCRIPTION | |
詳しい説明 | |
.EXAMPLE | |
このコマンドレットの使用方法の例 | |
.EXAMPLE | |
このコマンドレットの使用方法の別の例 | |
#> |
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
$recentItemsCompletion = { | |
param($commandName, $parameterName, $wordToComplete, $commandAst, $fakeBoundParameter) | |
# "\" が含まれる場合は、通常のPath入力とみなし、独自の入力補完は行わない | |
# 例えば"C:\" と入力した場合など | |
if(([string]$wordToComplete).Contains("\") ) | |
{ | |
return; | |
} |
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.Reactive.Linq; | |
namespace ConsoleApplication5 | |
{ | |
static class ObservalbeExt | |
{ | |
/// <summary> |
OlderNewer