Exemple #1
0
        public Paradigm()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;

            List<ContactData> contact = new List<ContactData>();
            Committee.Items.Add(TeamMember("Devesh Rastogi", "9962463212", "President", "Devesh Rastogi.jpg"));
            Committee.Items.Add(TeamMember("Siddaarth S", "9677043422", "VicePresident", "Siddarth S.jpg"));
            Committee.Items.Add(TeamMember("Shivani K", "9940697803", "Secretary", "Shivani K.jpg"));
            Committee.Items.Add(TeamMember("Aswin Kumar R", "9962020163", "Joint Secretary", "Aswin Kumar R.jpg"));
            Committee.Items.Add(TeamMember("Vishal Ramaswamy", "9445616866", "Treasurer", "Vishal Ramaswamy.jpg"));
            Committee.Items.Add(TeamMember("Arvind M", "9444443001", "Joint Treasurer", "Arvind M.jpg"));
            Committee.Items.Add(TeamMember("Bharath Kumar S", "9788987749", "Event Coordinator", "Bharath Kumar S.jpg"));
            Committee.Items.Add(TeamMember("Ruban B", "9094831059", "Event Coordinator", "Ruban B.jpg"));

            About.Text = "The Association of Computer Engineers was started in order to provide a platform to all the budding software professionals to showcase their talents. The motto of ACE is \"Education is not just academics\". In order to achieve this goal many events are organized in the Department of Computer Science and Engineering under the banner of ACE. " +
                         "\n\nParadigm is an annual national technical symposium organized by the Department of Computer Science and Engineering. It is conducted by the students and the Association of Computer Science and Engineering(ACE) every year. As a jewel in the crown, Paradigm attracts several thousand students from hundreds of colleges and universities across India. ";

            Details.Items.Add(BulletPoint("All the participants are requested to register with us before hand."));
            Details.Items.Add(BulletPoint("This year the event takes place on September 1."));
            Details.Items.Add(BulletPoint("The participants are requested not to litter within the campus grounds."));
            Details.Items.Add(BulletPoint("All the decisions made by the judges/organizers are final and binding on the participants."));
        }
        public EventDetail()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
Exemple #3
0
        public Map()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;

            Maps.Height = Window.Current.Bounds.Height;
        }
Exemple #4
0
        public Feeds()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;

            RefreshRotate.Begin();
            RefreshRotate.Pause();
        }
Exemple #5
0
        public Gallery()
        {
            this.DataContext = new MainPageViewModel();

            this.InitializeComponent();

            this.NavigationCacheMode = NavigationCacheMode.Required;

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;
        }
        public EventList()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;

            foreach(var i in DataProvider.eventDetails.Keys)
            {
                EventsList.Items.Add(EventItem(i, i.Contains("Online") || i.Contains("Programming and") ? "Online.png" : i + ".png"));
            }
        }
Exemple #7
0
        public Follow()
        {
            this.InitializeComponent();

            this.navigationHelper = new NavigationHelper(this);
            this.navigationHelper.LoadState += this.NavigationHelper_LoadState;
            this.navigationHelper.SaveState += this.NavigationHelper_SaveState;

            Developers.Items.Add(Paradigm.TeamMember("Karthik M A M", "9487907066", "Developer & Design", "Karthik M A M.jpg"));
            Developers.Items.Add(Paradigm.TeamMember("Dineshraj Gunasekaran", "8754434808", "Design", "Dinesh Raj.jpg"));

            Credits.Items.Add(Paradigm.TeamMember("Mohan Kumar P T", "7708819811", "Assets Design", "Mohan.jpg"));
            Credits.Items.Add(Paradigm.TeamMember("Mohan Sha", "9551175171", "Assets Design", "Mohan Sha.jpg"));
        }