Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube/Controls/Cards/ChannelCard.xaml.cs
T
Michael Gordeev 893a86517b - Fresh start
- Added new core project
- Done main layout design
- Done video, channel, playlist and advert cards
2019-11-10 20:05:15 +03:00

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;
}
}