Removing orphaned old sample files

This commit is contained in:
Bart Lannoeye 2017-02-02 21:43:03 +01:00
Родитель 517528984e
Коммит de2e34bd91
3 изменённых файлов: 3 добавлений и 31 удалений

Просмотреть файл

@ -1,7 +1,9 @@
namespace FormsCommunityToolkit.Effects
{
/// <summary>
/// Effect ids of all the available effects
/// Effect ids of all the available effects.
/// Can be used to resolve an effect from code.
/// e.g. MyEntry.Effects.Add(Effect.Resolve(EffectIds.ViewBlurEffect));
/// </summary>
public class EffectIds
{

Просмотреть файл

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:effects="clr-namespace:FormsCommunityToolkit.Effects;assembly=FormsCommunityToolkit.Effects"
x:Class="FormsCommunityToolkit.Effects.SampleApp.Views.PickerPage">
<ContentPage.Content>
<StackLayout Padding="20">
<Picker x:Name="ChangeColorPicker" effects:ChangePickerColorEffect.Color = "Red" Title = "PICKER TITLE IS RED" HorizontalOptions="FillAndExpand">
<Picker.Items>
<x:String>1</x:String>
<x:String>2</x:String>
</Picker.Items>
</Picker>
</StackLayout>
</ContentPage.Content>
</ContentPage>

Просмотреть файл

@ -1,15 +0,0 @@
using System;
using System.Collections.Generic;
using Xamarin.Forms;
namespace FormsCommunityToolkit.Effects.SampleApp.Views
{
public partial class PickerPage : ContentPage
{
public PickerPage()
{
InitializeComponent();
}
}
}