• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Participant类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中Participant的典型用法代码示例。如果您正苦于以下问题:C# Participant类的具体用法?C# Participant怎么用?C# Participant使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Participant类属于命名空间,在下文中一共展示了Participant类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: btnShowThisStudy_Click

 /// <summary>
 /// Shows only the quuestions and answers for the current study being viewed
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 protected void btnShowThisStudy_Click(object sender, EventArgs e)
 {
     Study study = new Study(Convert.ToInt32(Request.QueryString["study_id"]));
     Participant participant = new Participant(Convert.ToInt32(Request.QueryString["participant_id"]));
     pnlQualifiers.Controls.Clear();
     showStudyInfo(study, participant);
 }
开发者ID:SpencerForell,项目名称:Study-Participant-Portal,代码行数:12,代码来源:ParticipantInfo.aspx.cs


示例2: WhisperWindow

        public WhisperWindow(Conversation conversation, Participant participant, SeriousBusinessCat seriousBusiness, string info)
        {
            this.conversation = conversation;
            this.participant = participant;
            this.seriousBusiness = seriousBusiness;

            InitializeComponent();

            this.DataContext = this;

            InitCommands();

            this.Activated += (s,e) => { FlashWindow.Stop(this); };

            lbWhispers.ItemsSource = _whispers;

            string bob = "neighbor cat";

            if (participant != null)
            {
                bob = participant.Contact.GetContactInformation(ContactInformationType.DisplayName).ToString();
            }

            textBlock.Text = bob;

            if (!string.IsNullOrEmpty(info))
            {
                textBlock.ToolTip = info;
            }

            this.Title = $"Whispering with {bob}";

            FocusManager.SetFocusedElement(this, tbMessage);
        }
开发者ID:adzm,项目名称:BusinessCats,代码行数:34,代码来源:WhisperWindow.xaml.cs


示例3: Invitation

 internal Invitation(InvType invType, string invId, Participant inviter, int variant)
 {
     mInvitationType = invType;
     mInvitationId = invId;
     mInviter = inviter;
     mVariant = variant;
 }
开发者ID:CenzyGames,项目名称:The-Paper-Boat-SepScenes,代码行数:7,代码来源:Invitation.cs


示例4: gameSetup

 // Set up gameboard and players
 public override void gameSetup()
 {
     //Set up gameboard and view
     base.gameSetup();
     //Online Multiplayer Setup
     myHand = new List<int>();
     MultiplayerController.Instance.gp = this;
     myself = MultiplayerController.Instance.getMyself();
     participants = MultiplayerController.Instance.getParticipants();
     if (myself == participants [0]) {
         playerType = slot.Red;
         playerColor = Color.red;
         opponentType = slot.Blue;
         opponentColor = Color.blue;
         opponent = participants[1];
         TakeTurn();
     }
     else{
         playerType = slot.Blue;
         playerColor = Color.blue;
         opponentType = slot.Red;
         opponentColor = Color.red;
         opponent = participants[0];
         base.clearHandArea();
     }
 }
开发者ID:chengray,项目名称:ConnectDraw,代码行数:27,代码来源:OnlineGameController.cs


示例5: Register

  // Methods
  public void Register( Participant participant )
  {
    if( participants[ participant.Name ] == null )
      participants[ participant.Name ] = participant;

    participant.Chatroom = this;
  }
开发者ID:tian1ll1,项目名称:WPF_Examples,代码行数:8,代码来源:Mediator_RealWorld.cs


示例6: showAllInfo

 /// <summary>
 /// Shows questions/answers for all existing studies
 /// </summary>
 private void showAllInfo(Participant participant)
 {
     List<Study> studies = DAL.GetStudies();
     foreach (Study study in studies) {
         showStudyInfo(study, participant);
     }
 }
开发者ID:SpencerForell,项目名称:Study-Participant-Portal,代码行数:10,代码来源:ParticipantInfo.aspx.cs


示例7: GetParticipantPoints

        public static int GetParticipantPoints(Participant p, Dictionary<string, List<Result>> results)
        {
            if (!results.ContainsKey(p.Id))
                return 0;

            return results[p.Id].Sum(r => Global.GetPoints(r.Place));
        }
开发者ID:dhaigh,项目名称:Swimalicious,代码行数:7,代码来源:Global.cs


示例8: ParticipantInfo

        public ParticipantInfo(Participant p)
        {
            InitializeComponent();

            Title = String.Format("Participant Info — {0} {1}", p.FirstName, p.LastName);
            P = p;
            ReadResults();

            string info = String.Format("Name:\t\t{0}\n\n" +
                                        "Gender:\t\t{1}\n\n" +
                                        "Team:\t\t{2}\n\n" +
                                        "Age division:\t{3}",
                                        p.FirstName + " " + p.LastName, Global.GendersFull[p.Gender], p.Team, p.AgeDivision);

            if (Results.Count > 0)
            {
                dataGridParticipantResults.Visibility = Visibility.Visible;
                dataGridParticipantResults.ItemsSource = Results;
            }
            else
            {
                info += String.Format("\n\n{0} has no results recorded.", p.FirstName);
            }

            labelParticipantInfo.Content = info;
        }
开发者ID:dhaigh,项目名称:Swimalicious,代码行数:26,代码来源:ParticipantInfo.xaml.cs


示例9: Page_Load

    protected void Page_Load(object sender, EventArgs e)
    {
        Participant participant = new Participant();
        if(Session["TTID"] != null)
        {
            participant = Participant.GetParticipantDetails(int.Parse(Session["TTID"].ToString()));
            Session["TTID"] = null;
        }
        else
        {
            participant = Participant.GetParticipantDetails(Session["EmailID"].ToString());
            Session["EmailID"] = null;
        }

        if (participant != null)
        {
            lblName.Text = participant.Name;
            lblBranch.Text = participant.Branch.ToString();
            lblCollege.Text = Participant.GetCollegeName(participant.CollegeID);
            lblTTID.Text = "TT" + participant.TTID.ToString();
            lblYear.Text = participant.Year.ToString();
            lblContact.Text = participant.ContactNo;
        }
        else
        {
            Response.Redirect("ICard.aspx");
        }
    }
开发者ID:priyanshu92,项目名称:EventManagementSystem,代码行数:28,代码来源:PrintICard.aspx.cs


示例10: AgeChampion

 public AgeChampion(Participant p, int place, int points)
 {
     Name = p.FirstName + " " + p.LastName;
     Team = p.Team;
     Place = place;
     Points = points;
 }
开发者ID:dhaigh,项目名称:Swimalicious,代码行数:7,代码来源:AgeChampion.cs


示例11: btnParSubmit_Click

    /// <summary>
    /// Event handler when a participant is finished creating/editing an account. 
    /// If there are no errors, the session variable will be set to the user and they
    /// will be redirected to the participant form.
    /// </summary>
    /// <param name="sender"></param>
    /// <param name="e"></param>
    protected void btnParSubmit_Click(object sender, EventArgs e)
    {
        if (isFormValid(SuperUser.UserType.Participant)) {
            DatabaseQuery query;
            string queryString = "";
            if (Request.QueryString["edit"] == "true") {
                int parID = ((Participant)Session["user"]).UserID;
                DAL.UpdateParticipant(tbParUserName.Text, tbParFirstName.Text, tbParLastName.Text, tbParEmail.Text, tbParPassword.Text, parID);
            }
            else {
                try {
                    DAL.InsertParticipant(tbParUserName.Text, tbParFirstName.Text, tbParLastName.Text, tbParEmail.Text, tbParPassword.Text);

                }
                catch (Exception exception) {
                    lblParStatus.Text = exception.Message;
                    lblParStatus.Visible = true;
                    return;
                }
            }

            lblParStatus.Text = "";

            queryString = "select Par_ID from Participant where User_Name = '" + tbParUserName.Text + "'";
            query = new DatabaseQuery(queryString, DatabaseQuery.Type.Select);
            int userID = Convert.ToInt32(query.Results[0][0]);

            Session["user"] = new Participant(userID, tbParUserName.Text, tbParFirstName.Text, tbParLastName.Text, tbParEmail.Text, new List<Answer>());
            Response.Redirect("ParticipantForm.aspx");
        }
    }
开发者ID:SpencerForell,项目名称:Study-Participant-Portal,代码行数:38,代码来源:CreateAccount.aspx.cs


示例12: a_AddValid

 public void a_AddValid()
 {
     var response = client.AddParticipant(entity);
     WasSuccessfulTest(response);
     Assert.True(response.Data.id > 0);
     Assert.True(response.Data.data_saved.id == response.Data.id);
     entity = response.Data.data_saved;
 }
开发者ID:NickLarsen,项目名称:RegPointApi.NET,代码行数:8,代码来源:ParticipantTests.cs


示例13: BuildTestParticipantFromDataBase

 public static TestParticipant BuildTestParticipantFromDataBase(string idCase, string idDoctor, byte idPersonRole)
 {
     Participant p = new Participant();
     p.IdRole = idPersonRole;
     TestParticipant part = new TestParticipant(p);
     part.doctor = TestDoctor.BuildTestDoctorFromDataBase(idDoctor);
     return part;
 }
开发者ID:nbIxMaN,项目名称:EMKT,代码行数:8,代码来源:TestParticipant.cs


示例14: AddNewPartyMember

        private void AddNewPartyMember(Attack newAttack, String partyMemberName)
        {
            var result = MessageBox.Show("Is this character an NPC?", "NPC?", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
            var npc = (result != DialogResult.No);
            var newPerson = new Participant(partyMemberName, npc, newAttack);

            group.Add(newPerson);
        }
开发者ID:cidthecoatrack,项目名称:BattleOrder,代码行数:8,代码来源:GroupHandler.cs


示例15: GetMailTo

 public static string GetMailTo(Participant participant)
 {
     string returnVar = "mailto:" + participant.Email;
     if (!string.IsNullOrEmpty(participant.AlternateEmail))
     {
         returnVar += "?cc=" + participant.AlternateEmail;
     }
     return returnVar;
 }
开发者ID:mcshaz,项目名称:SimPlanner,代码行数:9,代码来源:EmailBase.cs


示例16: GetParticipantCode

        /// <summary>
        /// Connects with HealthVault to get a unique code for the participant
        /// </summary>
        /// <param name="participant">New participant that needs a HV authentication code</param>
        /// <returns>Authentication code from HealthVault</returns>
        public string GetParticipantCode(Participant participant)
        {
            OfflineWebApplicationConnection conn = HVConnectionManager.CreateConnection();

                string participantCode = PatientConnection.Create(conn, participant.FirstName, participant.SecurityQuestion,
                   participant.SecurityAnswer, null, participant.ID.ToString());

            return participantCode;
        }
开发者ID:samuelbritt,项目名称:6440-hit,代码行数:14,代码来源:HVParticipantEnroller.cs


示例17: Page_Load

 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         BindLstPatients();
         frmSelectedPatient.Visible = false;
     }
     selectedParticipant = GetSelectedParticpant();
 }
开发者ID:samuelbritt,项目名称:6440-hit,代码行数:9,代码来源:default.aspx.cs


示例18: Register

    public override void Register(Participant participant)
    {
        if (!participants.ContainsValue(participant))
        {
            participants[participant.Name] = participant;
        }

        participant.Chatroom = this;
    }
开发者ID:MikhailJacques,项目名称:Design-Patterns,代码行数:9,代码来源:Mediator2.cs


示例19: Button1_Click

 protected void Button1_Click(object sender, EventArgs e)
 {
     if (!IsValid)
         return;
     Participant part = new Participant();
     part.Name = TextBox1.Text;
     ScrumPokerSession.GameParticipant = part;
     Response.Redirect("~/GameList.aspx");
 }
开发者ID:krstan4o,项目名称:TelerikAcademy,代码行数:9,代码来源:Default.aspx.cs


示例20: TestParticipant

 public TestParticipant(Participant d, string idLpu = "")
 {
     if (d != null)
     {
         if (d.Doctor != null)
             doctor = new TestDoctor(d.Doctor, idLpu);
         participant = d;
     }
 }
开发者ID:nbIxMaN,项目名称:EMKT,代码行数:9,代码来源:TestParticipant.cs



注:本文中的Participant类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Particle类代码示例发布时间:2022-05-24
下一篇:
C# PartResourceDefinition类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap