mirror of
https://github.com/jwetzell/qController.git
synced 2026-08-05 15:33:47 +00:00
762472d945
* QSelectedCueCell.cs: Continue UI work * QSelectedCueOptionsCell.cs: Start work on Converting to Popup Style * ShadowButton.cs: Button in Frame with Shadow * ControlPage.xaml: * ControlPage.xaml.cs: Continue work on UI
22 lines
482 B
C#
22 lines
482 B
C#
using System;
|
|
using Xamarin.Forms;
|
|
|
|
namespace qController
|
|
{
|
|
public class ShadowButton : Frame
|
|
{
|
|
public ShadowButton(Button b)
|
|
{
|
|
//Content = b;
|
|
HeightRequest = b.Height;
|
|
WidthRequest = b.Width;
|
|
CornerRadius = b.CornerRadius;
|
|
Padding = new Thickness(0);
|
|
Content = b;
|
|
HasShadow = true;
|
|
BorderColor = Color.Black;
|
|
IsVisible = false;
|
|
}
|
|
}
|
|
}
|