mirror of
https://github.com/bitwarden/android.git
synced 2024-12-28 03:48:31 +03:00
292908f53f
* EC-259 Added Account switching on share extension on iOS, also improved performance for this and exception handling * EC-259 code formatting * EC-259 Added account switching to Share extension Send view * EC-259 Fixed navigation on share extension when a forms page is already presented * EC-259 Fix send text UI update when going from the iOS extension * EC-259 Improved DateTimeViewModel with helper property to easily setup date and time at the same time and applied on usage
83 lines
1.9 KiB
C#
83 lines
1.9 KiB
C#
// WARNING
|
|
//
|
|
// This file has been generated automatically by Visual Studio to store outlets and
|
|
// actions made in the UI designer. If it is removed, they will be lost.
|
|
// Manual changes to this file may not be handled correctly.
|
|
//
|
|
using Foundation;
|
|
using System.CodeDom.Compiler;
|
|
|
|
namespace Bit.iOS.ShareExtension
|
|
{
|
|
[Register ("LockPasswordViewController")]
|
|
partial class LockPasswordViewController
|
|
{
|
|
[Outlet]
|
|
UIKit.UIBarButtonItem _accountSwitchingButton { get; set; }
|
|
|
|
[Outlet]
|
|
UIKit.UIBarButtonItem _cancelButton { get; set; }
|
|
|
|
[Outlet]
|
|
UIKit.UITableView _mainTableView { get; set; }
|
|
|
|
[Outlet]
|
|
UIKit.UINavigationBar _navBar { get; set; }
|
|
|
|
[Outlet]
|
|
UIKit.UINavigationItem _navItem { get; set; }
|
|
|
|
[Outlet]
|
|
UIKit.UIView _overlayView { get; set; }
|
|
|
|
[Outlet]
|
|
UIKit.UIBarButtonItem _submitButton { get; set; }
|
|
|
|
[Action ("AccountSwitchingButton_Activated:")]
|
|
partial void AccountSwitchingButton_Activated (UIKit.UIBarButtonItem sender);
|
|
|
|
[Action ("CancelButton_Activated:")]
|
|
partial void CancelButton_Activated (UIKit.UIBarButtonItem sender);
|
|
|
|
[Action ("SubmitButton_Activated:")]
|
|
partial void SubmitButton_Activated (UIKit.UIBarButtonItem sender);
|
|
|
|
void ReleaseDesignerOutlets ()
|
|
{
|
|
if (_accountSwitchingButton != null) {
|
|
_accountSwitchingButton.Dispose ();
|
|
_accountSwitchingButton = null;
|
|
}
|
|
|
|
if (_cancelButton != null) {
|
|
_cancelButton.Dispose ();
|
|
_cancelButton = null;
|
|
}
|
|
|
|
if (_mainTableView != null) {
|
|
_mainTableView.Dispose ();
|
|
_mainTableView = null;
|
|
}
|
|
|
|
if (_navItem != null) {
|
|
_navItem.Dispose ();
|
|
_navItem = null;
|
|
}
|
|
|
|
if (_overlayView != null) {
|
|
_overlayView.Dispose ();
|
|
_overlayView = null;
|
|
}
|
|
|
|
if (_submitButton != null) {
|
|
_submitButton.Dispose ();
|
|
_submitButton = null;
|
|
}
|
|
|
|
if (_navBar != null) {
|
|
_navBar.Dispose ();
|
|
_navBar = null;
|
|
}
|
|
}
|
|
}
|
|
}
|