我需要将我的应用程序回滚到最后一个版本.可能吗?
我不能从以前的版本创建一个apk,因为我不再有源.
我需要从MainPage检索一些控件值到UserControl.在这个UserControl中,我需要能够获取Frame.ActualWidth和Frame.ActualHeight值(在这种情况下,Frame元素在MainPage中,UserControl通过xaml加载到MainPage的Grid中).有人有样品吗?谢谢
Josimari Martarelli ESLSistemasLogísticosSilverlightUI设计
我想在c#(Xamarin.iOS)中看到一个示例,该示例如何在我的应用程序上播放内置声音的iOS。首先,有人知道苹果是否允许(版权问题)?如果是这样,我该如何在Xamarin中进行修饰?
我在本地iOS中看到以下示例:https : //github.com/TUNER88/iOSSystemSoundsLibrary
#import <AudioToolbox/AudioToolbox.h>
AudioServicesPlaySystemSound (1003); // SMSReceived (see SystemSoundID below)
Run Code Online (Sandbox Code Playgroud) 我有以下风景:
1 using System;
2 using System.Windows;
3 using System.Windows.Controls;
4 using System.Windows.Documents;
5 using System.Windows.Ink;
6 using System.Windows.Input;
7 using System.Windows.Media;
8 using System.Windows.Media.Animation;
9 using System.Windows.Shapes;
10 using System.Collections.Generic;
11
12 namespace refresh
13 {
14 public partial class MainPage : UserControl
15 {
16
17 List c = new List();
18
19 public MainPage()
20 {
21 // Required to initialize variables
22 InitializeComponent();
23 c.Add(new Customer{ _nome = "Josimari", _idade = "29"});
24 c.Add(new Customer{_nome = …Run Code Online (Sandbox Code Playgroud) 我需要一个正则表达式来只允许数字和(.-/)
它应该允许这样的东西:
011.235673.98923/0001-12
我正在尝试根据iPhone屏幕大小更改字体大小.
我设置了一个在iPhone 6 Plus上看起来不错的字体大小,一旦我检测到iPhone并且它不是iPhone 6 Plus,我就改变它的大小.
我正在尝试这个ViewDidLoad事件:
lblLogin.Font.WithSize(17f);
Run Code Online (Sandbox Code Playgroud)
但它不是更新FontSize,我猜"Font.WithSize"不是实现它的路径,任何想法?
我正在使用MVVMCross + PCL,需要在此PCL中的ViewModel上触发事件.我需要plafotm特定的iOS ViewController来监视这个事件.
我该怎样才能说明这一点?
谢谢,
c# ×3
xamarin.ios ×3
ios ×2
iphone ×2
silverlight ×2
datagrid ×1
google-play ×1
mvvmcross ×1
publishing ×1
regex ×1