Horje
Scrollable WPF ListBox Code Example
Scrollable WPF ListBox

<ListBox ItemsSource="{Binding ActorList}" Width="300"
         ScrollViewer.CanContentScroll="False">
    <ListBox.ItemTemplate>
        <DataTemplate>
            <StackPanel Orientation="Horizontal">
                <Image Source="{Binding Image}" Height="100"/>
                <StackPanel Margin="10,0">
                    <TextBlock Text="{Binding FullName}" FontWeight="Bold" />
                    <TextBlock Text="{Binding Dates}"/>
                    <TextBlock Text="{Binding KnownFor}" FontStyle="Italic"/>
                </StackPanel>
            </StackPanel>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>




Csharp

Related
ASP.NET Core set update clear cache from IMemoryCache (set by Set method of CacheExtensions class) Code Example ASP.NET Core set update clear cache from IMemoryCache (set by Set method of CacheExtensions class) Code Example
Unity PlayOneShoot Audio Code Example Unity PlayOneShoot Audio Code Example
callling class c# Code Example callling class c# Code Example
list.SkipWhile  in c# Code Example list.SkipWhile in c# Code Example
c# how to convert string to float Code Example c# how to convert string to float Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9