1
.xmalファイルでラベルを取得しました。xamarin形式の.xmalと.csの間のデータアクセス
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="ListDemo.TableView">
<StackLayout>
<Label Text="Above TableView"></Label>
<TableView>
<TableView.Root>
<TableSection Title="Test">
<EntryCell Label="EntryCell"></EntryCell>
<TextCell Text="Test" Detail="Text Detail"></TextCell>
<ViewCell>
<ViewCell.View>
<StackLayout Orientation="Horizontal" >
<BoxView Color="Red"></BoxView>
<StackLayout>
<Label Text="{Binding Receivename}"></Label>
<Label Text="News URL 1"></Label>
</StackLayout>
<BoxView x:Name="boxView" Color="Blue" ></BoxView>
</StackLayout>
</ViewCell.View>
</ViewCell>
</TableSection>
</TableView.Root>
</TableView>
</StackLayout>
私は.csファイル、ファイルからラベルデータを設定したいです。
namespace ListDemo
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TableView : ContentPage
{
public TableView()
{
InitializeComponent();
public string Receivename = "Hello";
}
}
}
ラベルの動的データを設定するにはどうすればよいですか。 .csファイルに書き込むもの。
ありがとうございます。
:
私もxamarinにこのブログはあなたにヒントを与える必要があるなど、あなたは、プロパティの結合通知に多くを見てください。私のためにこれをコードしてください。私は非常に混乱しています、どこに書いて、データを設定するためにここに書くか – Myaaoonn
ありがとう..しかし、それは私のデバイスで "こんにちは"を表示されていません。私は何かが恋しいのですか? – Myaaoonn
'TableViewのXAMLにスタックパネルとラベルが存在しますか?おそらくXAMLの内容をさらに投稿しますか? – Toskr