带有图像的复选框列表

时间:2012-12-10 17:30:49

标签: c# windows-phone-7 listbox

我做了这个Windows Phone用户控件:

enter image description here

XAML:

<Grid x:Name="LayoutRoot" Height="75" Width="353">
        <Image Height="50" HorizontalAlignment="Left" Margin="12,12,0,0" Name="img" Stretch="Fill" VerticalAlignment="Top" Width="50" />
        <TextBlock Height="50" HorizontalAlignment="Left" Margin="77,12,0,0" Name="txt" Text="TextBlock" VerticalAlignment="Top" Width="215" FontSize="32" />
        <CheckBox Content="CheckBox" Height="68" HorizontalAlignment="Right" Margin="0,3,10,0" Name="cb" VerticalAlignment="Top" Width="50" />
</Grid>

我在其中一个页面中称之为

XAML.CS:

myListBox mls = new myListBox();
String[,] ls = { { "Text1", "/image/image1.png" }, { "Tex2", "/image/image2.png" } };
for (int i = 0; i < 2; i++)
{
        mls.txt.Text = ls[i, 0];
        mls.img.Source = url(ls[i, 1]);
}

public ImageSource url (string path)
{
        Uri uri = new Uri(path, UriKind.Absolute);
        ImageSource imgSource = new BitmapImage(uri);
        return imgSource;
}

我的问题是:

1)如果我按照下面的代码执行此操作,但如果我将 for loop 更改为i<1它工作正常(但不完全是我期望的问题2)

// Code to execute on Unhandled Exceptions
    private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
    {
        if (System.Diagnostics.Debugger.IsAttached)
        {
            // An unhandled exception has occurred; break into the debugger
            System.Diagnostics.Debugger.Break();
        }
    }

2)使用此代码我设置了文本和图像,但它没有放置图像,只放置文本。

1 个答案:

答案 0 :(得分:1)

我有类似的工作代码,我使用 UriKind 作为'相对',而不是'绝对'

还有一件事。确保您正在使用的图片属性下的'构建操作'设置为'内容'而不是'资源'或其他任何内容。

希望它能奏效。