Click here to Skip to main content
15,885,546 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to create a gauge in C# Pin
OriginalGriff18-Jul-21 7:56
mveOriginalGriff18-Jul-21 7:56 
GeneralRe: How to create a gauge in C# Pin
Ken1213318-Jul-21 8:46
Ken1213318-Jul-21 8:46 
GeneralRe: How to create a gauge in C# Pin
OriginalGriff18-Jul-21 8:54
mveOriginalGriff18-Jul-21 8:54 
GeneralRe: How to create a gauge in C# Pin
Ken1213318-Jul-21 9:57
Ken1213318-Jul-21 9:57 
GeneralRe: How to create a gauge in C# Pin
Ralf Meier18-Jul-21 10:07
mveRalf Meier18-Jul-21 10:07 
GeneralRe: How to create a gauge in C# Pin
Ken1213318-Jul-21 10:14
Ken1213318-Jul-21 10:14 
GeneralRe: How to create a gauge in C# Pin
OriginalGriff18-Jul-21 10:13
mveOriginalGriff18-Jul-21 10:13 
QuestionHow to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
Alex Dunlop15-Jul-21 7:38
Alex Dunlop15-Jul-21 7:38 
Hi,
I want to create a layout like this:
https://www.dropbox.com/s/zh3zfpzxjrl0ukg/Capture.PNG?dl=0[^]
I want a big space at top for scroll view and a narrow space at bottom for three buttons.
I tried this XAML:
XML
<StackLayout Margin="5">
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="10*"/>
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>
                <ScrollView>
                    <StackLayout x:Name="MyStack">
                        <!--Labels should be added here programmatically every time the button clicked-->
                    </StackLayout>
                </ScrollView>
                <Grid>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="*"/>
                        <ColumnDefinition Width="*"/>
                        <ColumnDefinition Width="*"/>
                    </Grid.ColumnDefinitions>
                    <Button Grid.Row="1" Grid.Column="0" Text="Add New Item" Clicked="Button_Clicked" />
                    <Button Grid.Row="1" Grid.Column="1" Text="Send" />
                    <Button Grid.Row="1" Grid.Column="2" Text="Reset" />
                </Grid>
            </Grid>
        </StackLayout>

But it is not my desired layout.
Please help me.

modified 15-Jul-21 13:46pm.

QuestionRe: How to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
Eddy Vluggen15-Jul-21 12:20
professionalEddy Vluggen15-Jul-21 12:20 
AnswerRe: How to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
Mycroft Holmes15-Jul-21 12:29
professionalMycroft Holmes15-Jul-21 12:29 
GeneralRe: How to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
Alex Dunlop15-Jul-21 19:11
Alex Dunlop15-Jul-21 19:11 
GeneralRe: How to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
Ken1213318-Jul-21 7:44
Ken1213318-Jul-21 7:44 
GeneralRe: How to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
OriginalGriff18-Jul-21 7:47
mveOriginalGriff18-Jul-21 7:47 
GeneralRe: How to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
Mycroft Holmes18-Jul-21 12:30
professionalMycroft Holmes18-Jul-21 12:30 
AnswerRe: How to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
Richard Deeming15-Jul-21 21:02
mveRichard Deeming15-Jul-21 21:02 
AnswerRe: How to create a layout with a scroll view at top and three buttons at bottom in Xamarin? Pin
Gerry Schmitz16-Jul-21 4:47
mveGerry Schmitz16-Jul-21 4:47 
QuestionOpen File Pin
f6115-Jul-21 5:24
f6115-Jul-21 5:24 
AnswerRe: Open File Pin
OriginalGriff15-Jul-21 5:28
mveOriginalGriff15-Jul-21 5:28 
GeneralRe: Open File Pin
f6115-Jul-21 6:24
f6115-Jul-21 6:24 
GeneralRe: Open File Pin
Gerry Schmitz15-Jul-21 6:32
mveGerry Schmitz15-Jul-21 6:32 
GeneralRe: Open File Pin
Richard Deeming15-Jul-21 6:38
mveRichard Deeming15-Jul-21 6:38 
GeneralRe: Open File Pin
Richard Andrew x6415-Jul-21 13:49
professionalRichard Andrew x6415-Jul-21 13:49 
GeneralRe: Open File Pin
Pete O'Hanlon17-Jul-21 22:38
mvePete O'Hanlon17-Jul-21 22:38 
GeneralRe: Open File Pin
f6118-Jul-21 6:33
f6118-Jul-21 6:33 
QuestionNeed a suggestion Pin
simpledeveloper14-Jul-21 7:47
simpledeveloper14-Jul-21 7:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.