16 lines
320 B
C#
16 lines
320 B
C#
|
using System.Reflection;
|
|||
|
using Xamarin.Forms;
|
|||
|
using Xamarin.Forms.Xaml;
|
|||
|
|
|||
|
namespace MobileApp1.Views
|
|||
|
{
|
|||
|
[XamlCompilation(XamlCompilationOptions.Compile)]
|
|||
|
public partial class CompanyHeaderView : ContentView
|
|||
|
{
|
|||
|
public CompanyHeaderView()
|
|||
|
{
|
|||
|
InitializeComponent();
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|