コード例 #1
0
 private void btnCreateContract_Click(object sender, RoutedEventArgs e)
 {
     //Create an instance from this template
     if (this.IsTemplate)
     {
         Contract axC = new Contract();
         DataRow template = this.GetTemplateRow(this.Id)[0];
         axC.Open("", this.Id, template["Name"].ToString(), template["PlaybookLink__c"].ToString());
     }
 }