893a86517b
- Added new core project - Done main layout design - Done video, channel, playlist and advert cards
15 lines
353 B
C#
15 lines
353 B
C#
using Windows.UI.Xaml;
|
|
using Windows.UI.Xaml.Controls;
|
|
|
|
namespace FoxTube.Controls.Cards
|
|
{
|
|
public sealed partial class ChannelCard : UserControl
|
|
{
|
|
public ChannelCard() =>
|
|
InitializeComponent();
|
|
|
|
void UserControl_SizeChanged(object sender, SizeChangedEventArgs e) =>
|
|
Height = .75 * ActualWidth;
|
|
}
|
|
}
|