如何直接从SQLite或SQL Server绑定UWP应用程序中的数据?

时间:2016-07-08 19:11:19

标签: c# uwp uwp-xaml

我的问题是,如何直接从任何远程或本地SQL Server将数据绑定到我的UWP应用程序中?

我的情景如下所示。

<ListView Name="list_students">  
<!--Name the listView to refer-->  
<ListView.ItemTemplate>  
    <DataTemplate>  
        <StackPanel Orientation="Horizontal" Margin="10,20,0,0">  
            <Image Stretch="Fill" Width="100" Height="100"></Image>  
            <StackPanel Orientation="Vertical">  
                <TextBlock></TextBlock>  
                <TextBlock></TextBlock>
                <TextBlock></TextBlock>
                <TextBlock></TextBlock>  
            </StackPanel>  
        </StackPanel>  
    </DataTemplate>  
</ListView.ItemTemplate>  

在代码背后,我有类似的东西。

public class Student   
{  
    public int id   
    {  
        get;  
        set;  
    }  
    public string Name   
    {  
        get;  
        set;  
    }  
    public string Class   
    {  
        get;  
        set;  
    }  
    public string RollNo   
    {  
        get;  
        set;  
    }  
    public string ImagePath   
    {  
        get;  
        set;  
    }  
}  

0 个答案:

没有答案