小编coo*_*shu的帖子

在那里我可以找到用于启动xamarin IOS应用程序的iphone模拟器

我正在解决这个问题.实际上我是在xamarin的帮助下第一次开发IOS应用程序.我在MAC上创建这个应用程序.Hello world应用程序已创建.我参考了Xamarin Hello World Tutorial.但我还没有让设备中的IOS模拟器选项下拉.它只有两个选项,Ios Device和Default.对于模拟器,是否需要任何安装或其他.请帮助我,任何帮助将得到赞赏.

iphone xamarin.ios ios ios-simulator xamarin

8
推荐指数
1
解决办法
1万
查看次数

自动完成出现在Modal弹出窗口后面

我正在使用简单的jquery弹出窗口和自动完成 jQuery Auto完成.自动完成的代码是这样的.

$("#tags").autocomplete({
    source: NameArray
});
Run Code Online (Sandbox Code Playgroud)

其中tags是textbox id,NameArray是string的字符串.但是这个代码在Modal弹出窗口中像这样 -

function openFilterPopUp() {

    $("#tags").autocomplete({
        source: NameArray
    });
    $("#openFilterPopUp").dialog({
        resizable: false,
        height: 240,
        modal: true,
        buttons: {
            "ok": function() { $(this).dialog("close"); },
            Cancel: function() { $(this).dialog("close"); }
        }
    });

}
Run Code Online (Sandbox Code Playgroud)

自动完成的数据显得很好,但它出现在弹出窗口后面.请帮助.任何帮助将不胜感激.

javascript jquery jquery-ui autocomplete

3
推荐指数
1
解决办法
8236
查看次数

在xamarin iOS中获取运行时警告

我正在创建xamarin iOS应用程序.我的项目基于推送通知.对于注册推送通知,我已经编写了以下代码应用程序.

public override bool FinishedLaunching (UIApplication app, NSDictionary options)
        {
// some code
            UIRemoteNotificationType notificationType = UIRemoteNotificationType.Alert | UIRemoteNotificationType.Badge | UIRemoteNotificationType.Sound;
            UIApplication.SharedApplication.RegisterForRemoteNotificationTypes (notificationType);
    // some code        
        }
public override void RegisteredForRemoteNotifications(UIApplication application,NSData deviceToken)
        {
//some code
}
public override void FailedToRegisterForRemoteNotifications(UIApplication application,NSError error)
        {
            Console.WriteLine ("Error AppDelegate push notification");
            new UIAlertView ("Error For Push Notification",error.LocalizedDescription,null,"OK",null).Show();
        }
        public override void ReceivedRemoteNotification(UIApplication application,NSDictionary userInfo)
        {
            Console.WriteLine ("Recieve Notification calling ");
        }


        public override void DidReceiveRemoteNotification (UIApplication application, NSDictionary userInfo, Action<UIBackgroundFetchResult> completionHandler) …
Run Code Online (Sandbox Code Playgroud)

notifications push-notification xamarin.ios ios

2
推荐指数
1
解决办法
1192
查看次数

如何使用 C# for Android 在 Xamarin 中获取密码文本框

我需要使用 c# 移动应用程序为我的 Xamarin 应用程序获取密码文本框。所以我在 main.xml 中创建了两个编辑文本。它们如下。

   <EditText
    android:id="@+id/edittext"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <requestFocus />
</EditText>
<EditText
    android:password="true"
    android:id="@+id/txtPassword"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:inputType="textVisiblePassword" />
<requestFocus />
Run Code Online (Sandbox Code Playgroud)

在我的活动中,我使用这样的密码:

   var editPassword = new EditText(this);
        editPassword.Id = Resource.Id.txtPassword;
Run Code Online (Sandbox Code Playgroud)

但在密码文本框中,文本显示正常而不是 ************。

c# android xamarin.android xamarin xamarin-studio

1
推荐指数
1
解决办法
6916
查看次数

检索通过SendGrid发送的电子邮件的状态

我正在使用Microsoft Windows Azure云平台的c#中创建一个应用程序。

我需要知道如何使用azure上托管的SendGrid服务跟踪电子邮件。跟踪状态可能是。

4. Track sent emails to determine if they were:
4.1 delivered
4.2 opened
4.3 recipient opt-out
4.4 bounced (with the reason for the bounce)
4.5 time/date sent
4.6 which links in the email were clicked (and time/date they were clicked)
4.7 IP address, if user clicked any links in the email  
Run Code Online (Sandbox Code Playgroud)

任何帮助将不胜感激。

.net email azure sendgrid

1
推荐指数
1
解决办法
3503
查看次数