Hi Dalan
We have checked with your queries.
Regarding the image in button query,
You can use Grid with Button and Image to set the image in desired location. Kindly refer the below code snippet.
Code snippet:
|
<DataTemplate>
<Grid VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Height="0.8"/>
<ColumnDefinition Height="0.2"/>
</Grid.ColumnDefinitions>
<Button BackgroundColor="Purple" Text="Template" TextColor="White" />
<Image Grid.Column="1" Source="Icon.png" /> '
</Grid>
</DataTemplate>
|
Regarding the shrinking the height of the buttons query,
Currently, schedule doesn’t support to customize the height of each appointment in the agenda view. So, it is not possible to shrink the height of the button used in agenda view for appointments. You can customize the header height of the agenda view using HeaderHeight property of AgendaViewStyle to show more appointments in the view. Kindly refer the below code snippet.
Code snippet:
|
AgendaViewStyle agendaViewStyle = new AgendaViewStyle();
agendaViewStyle.HeaderHeight = 0;
|
You can also refer our online User Guide Documentation by using the below link.
Regards,
Vigneshkumar R