| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- using System.Collections.Specialized;
- using System.Windows.Input;
- using Android.App;
- using Android.Views;
- using Android.Widget;
- namespace FormulaOneApp.Classic.Android
- {
- // This class is never actually executed, but when Xamarin linking is enabled it does how to ensure types and properties
- // are preserved in the deployed app
- public class LinkerPleaseInclude
- {
- public void Include(Button button)
- {
- button.Click += (s,e) => button.Text = button.Text + "";
- }
- public void Include(CheckBox checkBox)
- {
- checkBox.CheckedChange += (sender, args) => checkBox.Checked = !checkBox.Checked;
- }
-
- public void Include(Switch @switch)
- {
- @switch.CheckedChange += (sender, args) => @switch.Checked = !@switch.Checked;
- }
- public void Include(View view)
- {
- view.Click += (s, e) => view.ContentDescription = view.ContentDescription + "";
- }
- public void Include(TextView text)
- {
- text.TextChanged += (sender, args) => text.Text = "" + text.Text;
- text.Hint = "" + text.Hint;
- }
-
- public void Include(CheckedTextView text)
- {
- text.TextChanged += (sender, args) => text.Text = "" + text.Text;
- text.Hint = "" + text.Hint;
- }
- public void Include(CompoundButton cb)
- {
- cb.CheckedChange += (sender, args) => cb.Checked = !cb.Checked;
- }
- public void Include(SeekBar sb)
- {
- sb.ProgressChanged += (sender, args) => sb.Progress = sb.Progress + 1;
- }
- public void Include(Activity act)
- {
- act.Title = act.Title + "";
- }
- public void Include(INotifyCollectionChanged changed)
- {
- changed.CollectionChanged += (s,e) => { var test = string.Format("{0}{1}{2}{3}{4}", e.Action,e.NewItems, e.NewStartingIndex, e.OldItems, e.OldStartingIndex); } ;
- }
- public void Include(ICommand command)
- {
- command.CanExecuteChanged += (s, e) => { if (command.CanExecute(null)) command.Execute(null); };
- }
-
- public void Include(Cirrious.CrossCore.IoC.MvxPropertyInjector injector)
- {
- injector = new Cirrious.CrossCore.IoC.MvxPropertyInjector ();
- }
- public void Include(System.ComponentModel.INotifyPropertyChanged changed)
- {
- changed.PropertyChanged += (sender, e) => {
- var test = e.PropertyName;
- };
- }
- }
- }
|