TableView中的滑块

时间:2018-09-18 15:43:32

标签: xaml xamarin.forms

我正在寻找一个带有TableSection和TableView的ViewCell的滑块。但是,我希望滑块几乎全宽,因此它与“亮度”文本对齐。有什么想法吗?

<TableView>
    <TableRoot>
        <TableSection Title="System">
            <TextCell Text="Brightness" />
            <ViewCell>
                <ViewCell.View>
                    <StackLayout Padding="16, 0">
                        <Slider Minimum="0" Maximum="1" Scale="0.1" Value="{Binding PageBrightness}" />
                    </StackLayout>
                </ViewCell.View>
            </ViewCell>
        </TableSection>
    </TableRoot>
</TableView>

呈现的XAML

XAML Preview of Slider in ViewCell

我正在使用Xamarin Forms 3.1.0.697729

0 个答案:

没有答案