私はwrappanel.but用のカスタムコントロールを作成しました。余分なスペースがあります。 私はコントロールのHeightRequestのBindablePropertyを作成し、余分なスペースを削除するためにコンテンツに応じて設定しようとしています。カスタムxamarin.formsのカスタムコントロールのHeightRequestのBindableProperty
これは私がHeightRequest
のBindablePropertyにpublic double HeightRequest { get; set; }
private static BindableProperty heightTextProperty = BindableProperty.Create(
propertyName: "HeightRequest",
returnType: typeof(double),
declaringType: typeof(InstallationPhotoWrappanel),
defaultValue: 100,
defaultBindingMode: BindingMode.TwoWay,
propertyChanged: heightTextPropertyChanged);
private static void heightTextPropertyChanged(BindableObject bindable, object oldValue, object newValue)
{
var control = (InstallationPhotoWrappanel)bindable;
control.HeightRequest = Convert.ToDouble(newValue);
}
を作成する方法であるが、それは私が間違っhere.pleaseヘルプをやって何
exception has been thrown by the target of an invocation
私に例外を提供します。
ありがとうございます。