在运行时不会在列表框中显示图像

时间:2018-07-26 19:09:34

标签: c# wpf

图像显示在XAML中,但是当我运行该程序时,图像未显示在列表框中。它只显示方框,但没有图像。

代码如下:

<ScrollViewer HorizontalScrollBarVisibility="Visible" VerticalScrollBarVisibility="Hidden" Margin="103,156,67.6,65">
            <ListBox>
                <ListBox.ItemsPanel>
                    <ItemsPanelTemplate>
                        <VirtualizingStackPanel IsItemsHost="True" Orientation="Horizontal"/>
                    </ItemsPanelTemplate>
                </ListBox.ItemsPanel>
                <ListBoxItem>
                    <Image Margin="0,0,20,0" Width="225" Source="pictures/gw1.jpg"></Image>
                </ListBoxItem>
                <ListBoxItem>
                    <Image Margin="0,0,20,0" Width="225" Source="pictures/ja2.jpg"></Image>
                </ListBoxItem>
                <ListBoxItem>
                    <Image Margin="0,0,20,0" Width="225" Source="pictures/tj3.jpg"></Image>
                </ListBoxItem>
            </ListBox>
        </ScrollViewer>

0 个答案:

没有答案