Ejemplo n.º 1
0
        public UserProfile(int postId)
        {
            InitializeComponent();

            Title           = "User Profile";
            BackgroundImage = "image2.png";

            _dr = new DataRetriever();

            Posts post = _dr.GetPostById(postId);

            int userId = post.ID;

            LoadUser(userId);
        }