Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. private void cboalineacion_SelectedIndexChanged(object sender, EventArgs e)
  2. {
  3. if (cboalineacion.SelectedItem == "Izquierda")
  4. {
  5.  
  6. rtxTexto.SelectionAlignment = HorizontalAlignment.Left;
  7. }
  8. if (cboalineacion.SelectedItem == "Centrado")
  9. {
  10.  
  11. rtxTexto.SelectionAlignment = HorizontalAlignment.Center;
  12. }
  13. if (cboalineacion.SelectedItem == "Derecha")
  14. {
  15.  
  16. rtxTexto.SelectionAlignment = HorizontalAlignment.Right;
  17. }
  18.  
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement