dont focus on cell tapped

This commit is contained in:
Kyle Spearrin 2018-11-21 21:46:26 -05:00
parent ed087b81b4
commit bbea5fe53c
2 changed files with 19 additions and 15 deletions

View File

@ -34,19 +34,21 @@ namespace Bit.App.Controls
public ExtendedEditor Editor { get; private set; } public ExtendedEditor Editor { get; private set; }
/*
private void FormEditorCell_Tapped(object sender, EventArgs e) private void FormEditorCell_Tapped(object sender, EventArgs e)
{ {
Editor.Focus(); Editor.Focus();
} }
*/
public void InitEvents() public void InitEvents()
{ {
Tapped += FormEditorCell_Tapped; // Tapped += FormEditorCell_Tapped;
} }
public void Dispose() public void Dispose()
{ {
Tapped -= FormEditorCell_Tapped; // Tapped -= FormEditorCell_Tapped;
} }
} }
} }

View File

@ -10,7 +10,7 @@ namespace Bit.App.Controls
public class FormEntryCell : ExtendedViewCell, IDisposable public class FormEntryCell : ExtendedViewCell, IDisposable
{ {
private VisualElement _nextElement; private VisualElement _nextElement;
private TapGestureRecognizer _tgr; // private TapGestureRecognizer _tgr;
private StackLayout _buttonStackLayout = null; private StackLayout _buttonStackLayout = null;
public FormEntryCell( public FormEntryCell(
@ -64,7 +64,7 @@ namespace Bit.App.Controls
if(imageSource != null) if(imageSource != null)
{ {
_tgr = new TapGestureRecognizer(); // _tgr = new TapGestureRecognizer();
var theImage = new CachedImage var theImage = new CachedImage
{ {
@ -74,7 +74,7 @@ namespace Bit.App.Controls
WidthRequest = 18, WidthRequest = 18,
HeightRequest = 18 HeightRequest = 18
}; };
theImage.GestureRecognizers.Add(_tgr); // theImage.GestureRecognizers.Add(_tgr);
imageStackLayout.Children.Add(theImage); imageStackLayout.Children.Add(theImage);
} }
@ -188,14 +188,15 @@ namespace Bit.App.Controls
Entry.Completed += Entry_Completed; Entry.Completed += Entry_Completed;
} }
if(_tgr != null) // if(_tgr != null)
{ // {
_tgr.Tapped += Tgr_Tapped; // _tgr.Tapped += Tgr_Tapped;
} // }
Tapped += FormEntryCell_Tapped; // Tapped += FormEntryCell_Tapped;
} }
/*
private void Tgr_Tapped(object sender, EventArgs e) private void Tgr_Tapped(object sender, EventArgs e)
{ {
Entry.Focus(); Entry.Focus();
@ -205,6 +206,7 @@ namespace Bit.App.Controls
{ {
Entry.Focus(); Entry.Focus();
} }
*/
private void Entry_Completed(object sender, EventArgs e) private void Entry_Completed(object sender, EventArgs e)
{ {
@ -213,12 +215,12 @@ namespace Bit.App.Controls
public void Dispose() public void Dispose()
{ {
if(_tgr != null) // if(_tgr != null)
{ // {
_tgr.Tapped -= Tgr_Tapped; // _tgr.Tapped -= Tgr_Tapped;
} // }
Tapped -= FormEntryCell_Tapped; // Tapped -= FormEntryCell_Tapped;
Entry.Completed -= Entry_Completed; Entry.Completed -= Entry_Completed;
} }
} }