This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Incident Identifier: 68F51AF2-1193-45F2-AA53-8E0C966F3681 | |
CrashReporter Key: 9f9d82f8d83bb4d23de7ac29c815644b94c4c968 | |
Hardware Model: iPhone9,3 | |
Process: AccountMateMobileiOS [15793] | |
Path: /private/var/containers/Bundle/Application/82951640-8752-4F53-9EF4-E339D94FFA85/AccountMateMobileiOS.app/AccountMateMobileiOS | |
Identifier: com.accountmate.ios | |
Version: 36 (0.1) | |
Code Type: ARM-64 (Native) | |
Role: Foreground | |
Parent Process: launchd [1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class VisualElementLostFocusBehavior : Behavior<VisualElement> | |
{ | |
public static readonly BindableProperty CommandProperty = | |
BindableProperty.Create("Command", typeof(ICommand), typeof(VisualElementLostFocusBehavior)); | |
public ICommand Command | |
{ | |
get { return (ICommand)GetValue(CommandProperty); } | |
set { SetValue(CommandProperty, value); } | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"> | |
<views:ItemDetailsListView ItemTemplate="{StaticResource DataFieldCellTemplateSelector}" /> | |
</ContentPage> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ContentControl Content="{Binding}"> | |
<ContentControl.Resources> | |
<Style TargetType="ContentControl"> | |
<Style.Triggers> | |
<DataTrigger Binding="{Binding SelectedItems.Count}" Value="1"> | |
<Setter Property="ContentTemplate"> | |
<Setter.Value> | |
<DataTemplate> | |
<ComboBox /> | |
</DataTemplate> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface ISearchOption | |
{ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DirectoryTreeViewVm | |
{ | |
public ObservableCollection<DirectoryTreeViewItemVm> DirectoryTreeViewItems { get; } = new ObservableCollection<DirectoryTreeViewItemVm>(); | |
public DirectoryTreeViewVm() | |
{ | |
var drives = Environment.GetLogicalDrives(); | |
Task.Run(() => | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private TSqlRecord MapToClass<TSqlRecord>(SqlDataReader reader) where TSqlRecord : class, ISqlRecord | |
{ | |
var returnedObject = Activator.CreateInstance<TSqlRecord>(); | |
try | |
{ | |
var modelProperties = returnedObject.GetType().GetProperties(); | |
var schemeTable = reader.GetSchemaTable(); | |
foreach (var t in modelProperties) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Grid ColumnSpacing="1" Padding="4" Margin="0,0,0,6"> | |
<Grid.BackgroundColor> | |
<OnPlatform x:TypeArguments="Color" Android="#323232" iOS="#F5F5F5" /> | |
</Grid.BackgroundColor> | |
<Grid.RowDefinitions> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition Height="Auto" /> | |
<RowDefinition Height="Auto" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" android:versionCode="72" package="com.infotrac.droid" android:versionName="0.1"> | |
<!--suppress UsesMinSdkAttributes--> | |
<uses-sdk android:minSdkVersion="19" /> | |
<uses-feature android:glEsVersion="0x00020000" android:required="true" /> | |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<uses-permission android:name="android.permission.WRITE_CALENDAR" /> | |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Discord; | |
using Discord.WebSocket; | |
using FATMAN.Managers; | |
namespace FATMAN.Responders |