■ XML 직렬화를 제어하는 방법을 보여준다.
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 |
using System; using System.IO; using System.Xml.Serialization; using System.Windows.Forms; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.contactMethodComboBox.SelectedIndex = 1; #region 이벤트를 설정한다. this.serializeButton.Click += serializeButton_Click; this.deserializeButton.Click += deserializeButton_Click; #endregion } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 직렬화 버튼 클릭시 처리하기 - serializeButton_Click(sender, e) /// <summary> /// 직렬화 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void serializeButton_Click(object sender, EventArgs e) { Person.ContactMethod contactMethod; switch(this.contactMethodComboBox.Text) { case "우편" : contactMethod = Person.ContactMethod.Post; break; case "전화" : contactMethod = Person.ContactMethod.Phone; break; default : contactMethod = Person.ContactMethod.Email; break; } Person person = new Person ( this.firstNameTextBox.Text, this.lastNameTextBox.Text, this.streetTextBox.Text, this.cityTextBox.Text, this.stateTextBox.Text, this.zipTextBox.Text, this.phone1TextBox.Text, this.phone2TextBox.Text, this.mail1TextBox.Text, this.mail2TextBox.Text, contactMethod ); XmlSerializer serializer = new XmlSerializer(typeof(Person)); using(StringWriter writer = new StringWriter()) { serializer.Serialize(writer, person); this.xmlTextBox.Text = writer.ToString(); } this.firstNameTextBox.Clear(); this.lastNameTextBox.Clear(); this.streetTextBox.Clear(); this.cityTextBox.Clear(); this.stateTextBox.Clear(); this.zipTextBox.Clear(); this.phone1TextBox.Clear(); this.phone2TextBox.Clear(); this.mail1TextBox.Clear(); this.mail2TextBox.Clear(); this.contactMethodComboBox.SelectedIndex = -1; } #endregion #region 역직렬화 버튼 클릭시 처리하기 - deserializeButton_Click(sender, e) /// <summary> /// 역직렬화 버튼 클릭시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void deserializeButton_Click(object sender, EventArgs e) { XmlSerializer erializer = new XmlSerializer(typeof(Person)); using(StringReader reader = new StringReader(this.xmlTextBox.Text)) { Person person = (Person)erializer.Deserialize(reader); this.firstNameTextBox.Text = person.FirstName; this.lastNameTextBox.Text = person.LastName; this.streetTextBox.Text = person.Street; this.cityTextBox.Text = person.City; this.stateTextBox.Text = person.Street; this.zipTextBox.Text = person.Zip; this.phone1TextBox.Text = person.PhoneArray[0]; this.phone2TextBox.Text = person.PhoneArray[1]; this.mail1TextBox.Text = person.EmailArray[0]; this.mail2TextBox.Text = person.EmailArray[1]; string contextMethod; switch(person.PreferredMethod) { case Person.ContactMethod.Post : contextMethod = "우편"; break; case Person.ContactMethod.Phone : contextMethod = "전화"; break; default : contextMethod = "메일"; break; } this.contactMethodComboBox.Text = contextMethod; } this.xmlTextBox.Clear(); } #endregion } } |