summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WP8/TextCellRenderer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WP8/TextCellRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.WP8/TextCellRenderer.cs88
1 files changed, 88 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.WP8/TextCellRenderer.cs b/Xamarin.Forms.Platform.WP8/TextCellRenderer.cs
new file mode 100644
index 00000000..b3c2453d
--- /dev/null
+++ b/Xamarin.Forms.Platform.WP8/TextCellRenderer.cs
@@ -0,0 +1,88 @@
+using System;
+using System.Windows.Input;
+using Microsoft.Phone.Controls;
+
+namespace Xamarin.Forms.Platform.WinPhone
+{
+ public class TextCellRenderer : ICellRenderer
+ {
+ public virtual System.Windows.DataTemplate GetTemplate(Cell cell)
+ {
+ if (cell.RealParent is ListView)
+ {
+ if (TemplatedItemsList<ItemsView<Cell>, Cell>.GetIsGroupHeader(cell))
+ return (System.Windows.DataTemplate)System.Windows.Application.Current.Resources["ListViewHeaderTextCell"];
+
+ return (System.Windows.DataTemplate)System.Windows.Application.Current.Resources["ListViewTextCell"];
+ }
+
+ return (System.Windows.DataTemplate)System.Windows.Application.Current.Resources["TextCell"];
+ }
+ }
+
+ public class EntryCellRendererCompleted : ICommand
+ {
+ public bool CanExecute(object parameter)
+ {
+ return true;
+ }
+
+ public event EventHandler CanExecuteChanged;
+
+ public void Execute(object parameter)
+ {
+ var entryCell = (EntryCell)parameter;
+ entryCell.SendCompleted();
+ }
+ }
+
+ public class EntryCellPhoneTextBox : PhoneTextBox
+ {
+ public event EventHandler KeyboardReturnPressed;
+
+ protected override void OnKeyUp(KeyEventArgs e)
+ {
+ if (e.Key == Key.Enter)
+ {
+ EventHandler handler = KeyboardReturnPressed;
+ if (handler != null)
+ handler(this, EventArgs.Empty);
+ }
+ base.OnKeyUp(e);
+ }
+ }
+
+ public class EntryCellRenderer : ICellRenderer
+ {
+ public virtual System.Windows.DataTemplate GetTemplate(Cell cell)
+ {
+ return (System.Windows.DataTemplate)System.Windows.Application.Current.Resources["EntryCell"];
+ }
+ }
+
+ public class ViewCellRenderer : ICellRenderer
+ {
+ public virtual System.Windows.DataTemplate GetTemplate(Cell cell)
+ {
+ return (System.Windows.DataTemplate)System.Windows.Application.Current.Resources["ViewCell"];
+ }
+ }
+
+ public class SwitchCellRenderer : ICellRenderer
+ {
+ public virtual System.Windows.DataTemplate GetTemplate(Cell cell)
+ {
+ return (System.Windows.DataTemplate)System.Windows.Application.Current.Resources["SwitchCell"];
+ }
+ }
+
+ public class ImageCellRenderer : ICellRenderer
+ {
+ public virtual System.Windows.DataTemplate GetTemplate(Cell cell)
+ {
+ if (cell.RealParent is ListView)
+ return (System.Windows.DataTemplate)System.Windows.Application.Current.Resources["ListImageCell"];
+ return (System.Windows.DataTemplate)System.Windows.Application.Current.Resources["ImageCell"];
+ }
+ }
+} \ No newline at end of file