簡體   English   中英

列表框沒有滾動條

[英]Listbox No Scrollbar

我一直在互聯網上看起來很多人似乎有這個問題,但它通常通過將容器更改為網格,約束高度等來解決。我似乎無法讓這個工作。 我有一個observableCollection,它可以提供給DataTemplate。 我不能為我的生活讓滾動條工作。 它在那里,但沒有啟用。 謝謝斯科特

<TabItem Header="select a call" x:Name="TabActiveCalls" Style="{DynamicResource MyTabItem}" FontFamily="QuickType">
            <Grid Margin="0.125,0.412,3.125,0" Height="471" HorizontalAlignment="Stretch">
                <StackPanel Orientation="Horizontal" Width="839.14" HorizontalAlignment="Left" VerticalAlignment="Top" Height="56">
                    <StackPanel Orientation="Vertical" HorizontalAlignment="Left" Margin="0,0,10,0" Width="741.14">
                        <StackPanel Height="28" Orientation="Horizontal" Width="733.14" HorizontalAlignment="Left">
                            <TextBlock x:Name="txtHistoryFound" TextWrapping="Wrap" Text="*" Foreground="#FFE20A0A" Visibility="Collapsed"/>
                            <TextBlock TextWrapping="Wrap" Text="filter by:" Margin="5,0,10,0" Foreground="#FF585AD4" VerticalAlignment="Center" HorizontalAlignment="Center"/>
                            <TextBlock TextWrapping="Wrap" Text="call no" Margin="5,0,2,0" VerticalAlignment="Center" Foreground="#FF5E88DA"/>
                            <TextBox Template="{StaticResource TextBoxBaseControlTemplate}" x:Name="searchCallNo" TextChanged="searchCallNo_TextChanged"  TextWrapping="Wrap" Width="67" Foreground="#FF1341B1" TextAlignment="Center" Margin="5,0,10,0" Height="22" VerticalAlignment="Center"  />
                            <TextBlock TextWrapping="Wrap" Text="postcode" Margin="5,0,2,0" VerticalAlignment="Center" Foreground="#FF5E88DA"/>
                            <TextBox Template="{StaticResource TextBoxBaseControlTemplate}" x:Name="searchPostcode" TextWrapping="Wrap" Width="67" Foreground="#FF1341B1" TextAlignment="Center" Margin="5,0,10,0" Height="22" VerticalAlignment="Center"/>
                            <TextBlock Height="23" x:Name="txtSiteName" FontSize="16" Foreground="#FF0E7C0B" Width="409" VerticalAlignment="Center" HorizontalAlignment="Left" Margin="0" TextAlignment="Right" Text="Airedale International Ltd" />
                        </StackPanel>
                        <StackPanel Width="733.14" HorizontalAlignment="Left">
                            <Border Height="21" Margin="5,6,8,0" CornerRadius="3,3,0,0" BorderThickness="1" BorderBrush="#FFC0BABA">
                                <StackPanel Orientation="Horizontal" Background="#FFD0D5DE">
                                    <TextBlock TextWrapping="Wrap" Text="CALL NO. / DATE DUE/ CUSTOMER" Margin="5,0,0,0" Foreground="{DynamicResource ListTitle}" FontSize="10.667" VerticalAlignment="Center"/>
                                    <TextBlock TextWrapping="Wrap" Text="ENGINEER / ADDRESS" Margin="114,0,0,0" Foreground="{DynamicResource ListTitle}" VerticalAlignment="Center"/>
                                    <TextBlock TextWrapping="Wrap" Text="REPORT" Margin="43,0,0,0" Foreground="{DynamicResource ListTitle}" RenderTransformOrigin="2.543,0.429" VerticalAlignment="Center"/>
                                    <TextBlock TextWrapping="Wrap" Text="CALL" Margin="28,0,0,0" Foreground="{DynamicResource ListTitle}" RenderTransformOrigin="2.543,0.429" VerticalAlignment="Center"/>
                                    <TextBlock TextWrapping="Wrap" Text="POSITION" Margin="43,0,0,0" Foreground="{DynamicResource ListTitle}" RenderTransformOrigin="2.543,0.429" VerticalAlignment="Center"/>
                                </StackPanel>
                            </Border>
                        </StackPanel>
                    </StackPanel>
                    <Image Height="56" Width="90" Source="/ComfortReportEng;component/Media/Images/comfort_group.png"/>
                </StackPanel>
                    <ListBox ItemTemplate="{StaticResource DataTemplateReportList}" ItemsSource="{Binding Source={StaticResource cvsReportList}}" 
                    Margin="5,56,8,0" MaxHeight="415" Height="415" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.CanContentScroll="True"/>

            </Grid>
        </TabItem>

非常感謝回來。 這是我的DataTempate

<DataTemplate x:Key="DataTemplateReportList">
        <Border Margin="0,2,0,0" BorderThickness="1" BorderBrush="#FFA19C9C" CornerRadius="3,3,0,0" Width="810.52" Height="50" >
            <Grid Background="#FF737B89" Height="48" >
                <StackPanel Orientation="Vertical" HorizontalAlignment="Left" Width="274" VerticalAlignment="Top" >
                    <StackPanel Height="23" Orientation="Horizontal" Margin="0">
                        <TextBlock TextWrapping="Wrap" Text="{Binding CallNo, Mode=TwoWay}" Foreground="#FF7DF51E" Margin="5,0,0,0" FontFamily="Verdana"/>
                        <TextBlock TextWrapping="Wrap" Text="{Binding DateDue, Mode=TwoWay, StringFormat=d}" Foreground="White" Margin="5,0,0,0" FontFamily="Verdana"/>
                    </StackPanel>
                    <StackPanel Height="23" Orientation="Horizontal">
                        <TextBlock TextWrapping="Wrap" Text="{Binding CompanyName, Mode=TwoWay}" Foreground="#FFFFEA00" Margin="5,0,0,0" FontFamily="Verdana"/>
                    </StackPanel>
                </StackPanel>
                <StackPanel HorizontalAlignment="Left" Width="456" Orientation="Vertical" Height="46" Margin="274,1,0,1" VerticalAlignment="Top">
                    <StackPanel Height="23" Orientation="Horizontal">
                        <TextBlock TextWrapping="Wrap" Text="{Binding EngineerName, Mode=TwoWay}" Foreground="#FFCAE5C6" Margin="5,0,0,0" FontFamily="Verdana" Width="140"/>
                        <TextBlock TextWrapping="Wrap" Text="{Binding ReportStatus, Mode=TwoWay}" Foreground="#FF7DF51E" Margin="20,0,0,0" FontFamily="Verdana" Width="50"/>
                        <TextBlock TextWrapping="Wrap" Text="{Binding CallStatus, Mode=TwoWay}" Foreground="#FF7DF51E" Margin="20,0,0,0" FontFamily="Verdana" Width="50"/>
                        <TextBlock TextWrapping="Wrap" Text="{Binding Position, Mode=TwoWay}" Foreground="White" Margin="20,0,0,0" FontFamily="Verdana" Width="50"/>
                    </StackPanel>
                    <StackPanel Height="23" Orientation="Horizontal">
                        <TextBlock TextWrapping="Wrap" Text="{Binding Address, Mode=TwoWay}" Foreground="#FFFFEA00" Margin="5,0,0,0" FontFamily="Verdana" Width="483.12"/>

                    </StackPanel>
                </StackPanel>
                <Grid Width="56" HorizontalAlignment="Right" Margin="0,0,12.52,0" VerticalAlignment="Top">
                    <Image Name="imgInfo" Source="/ComfortReportEng;component/Media/Images/Info4.png" Margin="24,8,0,0" Cursor="Hand" MouseLeftButtonDown="imgInfo_MouseLeftButtonDown"/>
                </Grid>
            </Grid>
        </Border>
    </DataTemplate>

一定是個bug。 我只有以下......

<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="ComfortReportEng.Views.EngineerReport.EngineerReport"
Title="Engineer Report" WindowStartupLocation="CenterScreen" Loaded="Window_Loaded" SizeToContent="WidthAndHeight" >
<Window.Resources>
    <CollectionViewSource x:Key="cvsReportList"/>
</Window.Resources>
    <Grid Margin="0.125,0.412,3.125,0" Height="471">
        <ListBox Margin="23,64,3,0" Width="834.14"  ItemsSource="{Binding Source={StaticResource cvsReportList}}" 
            x:Name="lbReportList" SelectionChanged="lbReportList_SelectionChanged" Background="#FFEEEFE4" />
    </Grid>

和代碼是

 private void LoadReportList()
    {
        int number = 0;
        List<int> myNumbers = new List<int>();
        while (number < 80)
        {
            myNumbers.Add(number);
            number += 1;
        }
        _cvsReportList = (CollectionViewSource)(this.FindResource("cvsReportList"));
        _cvsReportList.Source = myNumbers;
    }

這是從另一個項目復制而來的。 完全糊塗了。 請不要擔心。 這不是一個合乎邏輯的問題。 請把它作為一個沒有解決方案的近距離通話。 再次歡呼斯科特

只是為了完整。 我不確定為什么會發生這種情況,但現在就是這樣。

if (System.Environment.MachineName == "SCOTT-PC")
        {
            this.txtUserName.Text = "Scott Fisher";
            this.txtPassword.Password = "palace";
            //LoginOK();

        }
        else
            Keyboard.Focus(this.txtUserName);

如果我清除對LoginOK程序的評論,我將得不到滾動條。 隨着它評論,我與登錄屏幕交互,然后一切都很好。 最后這里是LoginOK的代碼。 if(LoginService.CheckLogin(txtUserName.Text,txtPassword.Password.ToString())){Helpers.User.ThisUser = this.txtUserName.Text;

                EngineerReport.EngineerReport engReport = new EngineerReport.EngineerReport()
                {
                    Owner = Window.GetWindow(this),
                    WindowStartupLocation =
                        System.Windows.WindowStartupLocation.
                        CenterOwner
                };
                this.Hide();
                engReport.ShowDialog();
            }
            else
            {
                this.txtPassword.Password = "";
                this.txtPassword.Focus();
            }

你可以為我提供DataTemplate,因為我相信我已經設法模擬你想要實現的目標,並且滾動條可見並且從一開始就可以工作。

這是我用於ListBox的DataTemplate的xaml:

    <ListBox DataContext="{StaticResource MusicData}" ItemsSource="{Binding XPath=Album}">
        <ListBox.ItemTemplate>
            <DataTemplate>
                <ListBoxItem>
                    <StackPanel Orientation="Horizontal" >
                        <TextBlock>No.</TextBlock>
                        <TextBlock Text="{Binding XPath=No}"></TextBlock>
                        <TextBlock>Title</TextBlock>
                        <TextBlock Text="{Binding XPath=Title}"></TextBlock>
                    </StackPanel>
                </ListBoxItem>
            </DataTemplate>
        </ListBox.ItemTemplate>
    </ListBox>

希望這可以幫助。

我還發現了一段時間后我用過的代碼,這可能有所幫助。 您可以嘗試設置ItemsPanelTemplate:

    <ListBox.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel>
                <ScrollViewer VerticalScrollBarVisibility="Visible" />
            </StackPanel>
        </ItemsPanelTemplate>
    </ListBox.ItemsPanel>

這將適用於本文所述的任何項目控件: http//msdn.microsoft.com/en-us/library/system.windows.controls.itemscontrol.itemcontainerstyle.aspx

我可以建議的最后一件事是為ListBox創建自己的ControlTemplate,如下所示:

<ListBox.Template>
    <ControlTemplate>
        <ScrollViewer VerticalScrollBarVisibility="Auto">
            <ItemsPresenter />
        </ScrollViewer>
    </ControlTemplate>
</ListBox.Template>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM