简体   繁体   中英

c# DataBinding in User control Win8

I've a ObservableCollection's list that receives data from the database, and i put this data in my grid, by data binding. So, i've a user control that appears when i click in a item of this grid. I want that a text box of my user control, show the selected item of my grid. I've tried this using data binding, but the textbox not shows the selected item.. is it possible ?

grid code:

<FlexGrid:C1FlexGrid 

        x:Name="grid" ItemsSource="{Binding list3, Mode=TwoWay}" 
        AutoGenerateColumns="False" 
        HorizontalAlignment="Left" Height="431" Margin="10,147,0,0" VerticalAlignment="Top" Width="1152" SelectionMode="Row" KeepCurrentVisible="True" Tapped="grid_Tapped" >
        <FlexGrid:C1FlexGrid.DataContext>
            <local:Controller/>
        </FlexGrid:C1FlexGrid.DataContext>

        <FlexGrid:C1FlexGrid.Columns>
            <FlexGrid:Column Binding="{Binding describe}" Header="Describes" Width="800" />
            <FlexGrid:Column Binding="{Binding describeNote}" Header="Describes Notes" Width="300" />
        </FlexGrid:C1FlexGrid.Columns>

    </FlexGrid:C1FlexGrid>

User Control code:

<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Binding"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:FlexGrid="using:C1.Xaml.FlexGrid"
x:Class="Binding.popNotas"
mc:Ignorable="d" Height="281.925" Width="656.03">

<Grid>
    <TextBox x:Name="txt2" Text="{Binding SelectedItem.describe, ElementName=grid, Mode=TwoWay}" Height="38" Margin="140,5,141,0" TextWrapping="Wrap" VerticalAlignment="Top">

    </TextBox>

</Grid>

cs code

public class Controller : Common.BindableBase
{
    //DAOS      
    public TesteDao dao { get; set; }


    private ObservableCollection<ClPasso> _list3 = new ObservableCollection<ClPasso>();
    public ObservableCollection<ClPasso> list3
    {
        get { return _list3; }
        set { this.SetProperty(ref this._list3, value); }
    }


    public Controller()
    {
        OnNavigatedTo();

    }
    protected async void OnNavigatedTo()
    {
        await InitializeDatabase();
        list3 = await createlist3();
    }

    private async Task InitializeDatabase()
    {
        string datbasePath = Windows.Storage.ApplicationData.Current.LocalFolder.Path + "\\bd_example.db";
        DataBase database = new DataBase (datbasePath);
        await database.initialize();
        dao = new TesteDao(database);

    }


    public async Task<ObservableCollection<ClPasso>> createlist3()
    {
        return await dao.joinListAsync(123, "924be4cc-16db-40c2-b342-d6c1fccbec86");
    }

  }

Help!

Thanks!!!

i've solved my question..

So, i created a DependencyProperty on code behind of my User Control, named selection, and i put this in Text of my text box.. after, when i will using my user control, in my main page, i passed the value in for porperty..

Like this:

User Control

 public sealed partial class UCNotes : UserControl
{


    public string selection
    {
        get { return (string)GetValue(selectionProperty); }
        set { SetValue(selectionProperty, value); }
    }

    public static readonly DependencyProperty selecionadoProperty =
        DependencyProperty.Register("selection", typeof(string), typeof(UCNotes), new PropertyMetadata(null));

User Control XAML

<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Test"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:FlexGrid="using:C1.Xaml.FlexGrid"
x:Class="Fiscalizacao.UCNotes"
mc:Ignorable="d"
d:DesignHeight="327.068" Width="799.248">

<Grid Margin="10,0,10,10" Background="#FFB2B2B2" Height="303" VerticalAlignment="Bottom">
    <TextBox x:Name="txtSelection" Text="{Binding selection}" Height="38" Margin="153,75,153,0" TextWrapping="Wrap" VerticalAlignment="Top" BorderBrush="Black"/>

Main Page XAML

 <FlexGrid:C1FlexGrid 
            x:Name="questionsGrid" 
            HorizontalAlignment="Left" Height="417" Margin="31,181,0,0" VerticalAlignment="Top" Width="1306" 
            AutoGenerateColumns="False" KeepCurrentVisible="True" 
            SelectionMode="Row" ItemsSource="{Binding list, Mode=TwoWay}">
            <FlexGrid:C1FlexGrid.Columns>
                <FlexGrid:Column Binding="{Binding describes}" Header="Descrição" Width="900" />
                <FlexGrid:Column Binding="{Binding descibesNotes}" Header="Nota" Width="*" />
            </FlexGrid:C1FlexGrid.Columns>
        </FlexGrid:C1FlexGrid>

        <Popup x:Name="popNotes" IsLightDismissEnabled="True" IsOpen="False" HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Row="1" Grid.Column="1" Margin="0,0,700,300" >
            <local:UCNotes selection="{Binding SelectedItem.describes, ElementName=questionsGrid" />

        </Popup>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM